Sha256: b22924e20ebafa025995a0fae448966f5108d6b970699e2164d4c2e95a558924
Contents?: true
Size: 765 Bytes
Versions: 1
Compression:
Stored size: 765 Bytes
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 ID of the workspace. field :workspace_id, T.nilable(::String), { 'query_param': { 'field_name': 'workspaceId', 'style': 'form', 'explode': true } } sig { params(slug: ::String, workspace_id: T.nilable(::String)).void } def initialize(slug: nil, workspace_id: nil) @slug = slug @workspace_id = workspace_id end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dub-0.1.3 | lib/open_api_sdk/models/operations/deletedomain_request.rb |