Sha256: 66125efffee21ca306e1ad5533b8640bad9f7fe2ef542679d41b87298affc289
Contents?: true
Size: 733 Bytes
Versions: 14
Compression:
Stored size: 733 Bytes
Contents
# 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
Version data entries
14 entries across 14 versions & 1 rubygems