Sha256: 0d2323de0adf746162db79b25048a29e6ba27ffb942c3b1101d198affeb11060
Contents?: true
Size: 910 Bytes
Versions: 7
Compression:
Stored size: 910 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class UpdateLinkRequest < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # The id of the link to update. 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 } } field :request_body, T.nilable(::OpenApiSDK::Operations::UpdateLinkRequestBody), { 'request': { 'media_type': 'application/json' } } sig { params(link_id: ::String, request_body: T.nilable(::OpenApiSDK::Operations::UpdateLinkRequestBody)).void } def initialize(link_id: nil, request_body: nil) @link_id = link_id @request_body = request_body end end end end
Version data entries
7 entries across 7 versions & 1 rubygems