Sha256: 96e27c8691273585d03386840ecb04a464d1a8eac8062238d874113f2a05e6d6
Contents?: true
Size: 955 Bytes
Versions: 1
Compression:
Stored size: 955 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Shared class Domains < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # 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) @primary = primary @slug = slug @verified = verified end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dub-0.2.2.pre.alpha.4 | lib/open_api_sdk/models/shared/domains.rb |