Sha256: f8ab538d84b783c4d35e0f8a4bc143c7ce93fc482c4a0dafe494c1e23cab810a
Contents?: true
Size: 834 Bytes
Versions: 12
Compression:
Stored size: 834 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Operations class PostTagsRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig field :namespace_name, ::String, { 'path_param': { 'field_name': 'namespace_name', 'style': 'simple', 'explode': false } } # A JSON representation of the tags to add field :add_tags, T.nilable(::SpeakeasyClientSDK::Shared::AddTags), { 'request': { 'media_type': 'application/json' } } sig { params(namespace_name: ::String, add_tags: T.nilable(::SpeakeasyClientSDK::Shared::AddTags)).void } def initialize(namespace_name: nil, add_tags: nil) @namespace_name = namespace_name @add_tags = add_tags end end end end
Version data entries
12 entries across 12 versions & 1 rubygems