Sha256: 62f5c076ff6631826aef094987f66c99b100b4d2464f6a931ce90f81c67e5ecb
Contents?: true
Size: 1.05 KB
Versions: 9
Compression:
Stored size: 1.05 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class DeleteDomainRequest < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # The domain name. field :slug, ::String, { 'path_param': { 'field_name': 'slug', 'style': 'simple', 'explode': false } } # The slug of the project. This field is deprecated – use `workspaceId` instead. field :project_slug, T.nilable(::String), { 'query_param': { 'field_name': 'projectSlug', 'style': 'form', 'explode': true } } # The ID of the workspace. field :workspace_id, T.nilable(::String), { 'query_param': { 'field_name': 'workspaceId', 'style': 'form', 'explode': true } } sig { params(slug: ::String, project_slug: T.nilable(::String), workspace_id: T.nilable(::String)).void } def initialize(slug: nil, project_slug: nil, workspace_id: nil) @slug = slug @project_slug = project_slug @workspace_id = workspace_id end end end end
Version data entries
9 entries across 9 versions & 1 rubygems