Sha256: 3d355b062db72b1a847362a95a1cf6bdd695aeb15b88702fe700cbb9dad88e42
Contents?: true
Size: 1.36 KB
Versions: 40
Compression:
Stored size: 1.36 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Operations class UpsertApiEndpointRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig # A JSON representation of the ApiEndpoint to upsert. field :api_endpoint, ::SpeakeasyClientSDK::Shared::ApiEndpointInput, { 'request': { 'media_type': 'application/json' } } # The ID of the ApiEndpoint to upsert. field :api_endpoint_id, ::String, { 'path_param': { 'field_name': 'apiEndpointID', 'style': 'simple', 'explode': false } } # The ID of the Api the ApiEndpoint belongs to. field :api_id, ::String, { 'path_param': { 'field_name': 'apiID', 'style': 'simple', 'explode': false } } # The version ID of the Api the ApiEndpoint belongs to. field :version_id, ::String, { 'path_param': { 'field_name': 'versionID', 'style': 'simple', 'explode': false } } sig { params(api_endpoint: ::SpeakeasyClientSDK::Shared::ApiEndpointInput, api_endpoint_id: ::String, api_id: ::String, version_id: ::String).void } def initialize(api_endpoint: nil, api_endpoint_id: nil, api_id: nil, version_id: nil) @api_endpoint = api_endpoint @api_endpoint_id = api_endpoint_id @api_id = api_id @version_id = version_id end end end end
Version data entries
40 entries across 40 versions & 1 rubygems