Sha256: d09ad7c47bf45a5c92b6c4b907bbf7a9b43351dbaa67cf6cd9c62b3ee684535b
Contents?: true
Size: 776 Bytes
Versions: 7
Compression:
Stored size: 776 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Operations class UpsertApiRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig # A JSON representation of the Api to upsert field :api, ::SpeakeasyClientSDK::Shared::ApiInput, { 'request': { 'media_type': 'application/json' } } # The ID of the Api to upsert. field :api_id, ::String, { 'path_param': { 'field_name': 'apiID', 'style': 'simple', 'explode': false } } sig { params(api: ::SpeakeasyClientSDK::Shared::ApiInput, api_id: ::String).void } def initialize(api: nil, api_id: nil) @api = api @api_id = api_id end end end end
Version data entries
7 entries across 7 versions & 1 rubygems