Sha256: 5747b6a6022d94afed62c206818255c3ed3abf9beffc6079efaf0b08c3951b6a
Contents?: true
Size: 897 Bytes
Versions: 1
Compression:
Stored size: 897 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class DeleteLinkRequest < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # The id of the link to delete. You may use either `linkId` (obtained via `/links/info` endpoint) or `externalId` prefixed with `ext_`. field :link_id, ::String, { 'path_param': { 'field_name': 'linkId', '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(link_id: ::String, workspace_id: T.nilable(::String)).void } def initialize(link_id: nil, workspace_id: nil) @link_id = link_id @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/deletelink_request.rb |