Sha256: 41b179bf2f46bbb841d6c58b6e4305a22e0e0c73cd55019d2017c6f268d0f966
Contents?: true
Size: 1.42 KB
Versions: 20
Compression:
Stored size: 1.42 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class CreateDomainRequestBody < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # Name of the domain. field :slug, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('slug') } } # Whether to archive this domain. `false` will unarchive a previously archived domain. field :archived, T.nilable(T::Boolean), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('archived') } } # Redirect users to a specific URL when any link under this domain has expired. field :expired_url, T.nilable(::String), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('expiredUrl') } } # Provide context to your teammates in the link creation modal by showing them an example of a link to be shortened. field :placeholder, T.nilable(::String), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('placeholder') } } sig { params(slug: ::String, archived: T.nilable(T::Boolean), expired_url: T.nilable(::String), placeholder: T.nilable(::String)).void } def initialize(slug: nil, archived: nil, expired_url: nil, placeholder: nil) @slug = slug @archived = archived @expired_url = expired_url @placeholder = placeholder end end end end
Version data entries
20 entries across 20 versions & 1 rubygems