Sha256: abecc6e1299d388c0ebe8ccd869d39ac36ef653ffa4c21d386823db1d046f231
Contents?: true
Size: 1.09 KB
Versions: 40
Compression:
Stored size: 1.09 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Operations class FindApiEndpointRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig # The ID of the Api the ApiEndpoint belongs to. field :api_id, ::String, { 'path_param': { 'field_name': 'apiID', 'style': 'simple', 'explode': false } } # The displayName of the ApiEndpoint to find (set by operationId from OpenAPI schema). field :display_name, ::String, { 'path_param': { 'field_name': 'displayName', '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_id: ::String, display_name: ::String, version_id: ::String).void } def initialize(api_id: nil, display_name: nil, version_id: nil) @api_id = api_id @display_name = display_name @version_id = version_id end end end end
Version data entries
40 entries across 40 versions & 1 rubygems