# Code generated by Speakeasy (https://speakeasyapi.dev). 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') } } sig { params(primary: T::Boolean, slug: ::String).void } def initialize(primary: nil, slug: nil) @primary = primary @slug = slug end end end end