Sha256: ec4daf67155517a3abf602b4b28ec13e7e69f2187d9b67621d01df8baabda6e3
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class GetApiEndpointRequest < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # The ID of the ApiEndpoint to retrieve. 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_id: ::String, api_id: ::String, version_id: ::String).void } def initialize(api_endpoint_id: nil, api_id: nil, version_id: nil) @api_endpoint_id = api_endpoint_id @api_id = api_id @version_id = version_id end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
speakeasy_client_sdk_ruby-4.2.24 | lib/open_api_sdk/models/operations/getapiendpoint_request.rb |