Sha256: fe6a6bc77a75a2ad70c5366ebae1a113ad348981817835706ebff6b5d9b33dbf
Contents?: true
Size: 1.03 KB
Versions: 7
Compression:
Stored size: 1.03 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Operations class DeleteSchemaRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig # The ID of the Api to delete schemas for. field :api_id, ::String, { 'path_param': { 'field_name': 'apiID', 'style': 'simple', 'explode': false } } # The revision ID of the schema to delete. field :revision_id, ::String, { 'path_param': { 'field_name': 'revisionID', 'style': 'simple', 'explode': false } } # The version ID of the Api to delete metadata for. field :version_id, ::String, { 'path_param': { 'field_name': 'versionID', 'style': 'simple', 'explode': false } } sig { params(api_id: ::String, revision_id: ::String, version_id: ::String).void } def initialize(api_id: nil, revision_id: nil, version_id: nil) @api_id = api_id @revision_id = revision_id @version_id = version_id end end end end
Version data entries
7 entries across 7 versions & 1 rubygems