lib/open_api_sdk/models/shared/domains.rb in dub-0.2.2.pre.alpha.38 vs lib/open_api_sdk/models/shared/domains.rb in dub-0.2.2

- old
+ new

@@ -1,6 +1,6 @@ -# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. +# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true @@ -13,18 +13,15 @@ # Whether the domain is the primary domain for the workspace. field :primary, T::Boolean, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('primary') } } # The domain name. field :slug, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('slug') } } - # Whether the domain is verified. - field :verified, T::Boolean, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('verified') } } - sig { params(primary: T::Boolean, slug: ::String, verified: T::Boolean).void } - def initialize(primary: nil, slug: nil, verified: nil) + sig { params(primary: T::Boolean, slug: ::String).void } + def initialize(primary: nil, slug: nil) @primary = primary @slug = slug - @verified = verified end end end end