Sha256: 313dcea8bdbd1b28e56882c1b23441034b7778369cf413bc349a7646eb9b329f
Contents?: true
Size: 835 Bytes
Versions: 1
Compression:
Stored size: 835 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class GetRevisionsRequest < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig field :namespace_name, ::String, { 'path_param': { 'field_name': 'namespace_name', 'style': 'simple', 'explode': false } } # Token to retrieve the next page of results field :next_page_token, T.nilable(::String), { 'query_param': { 'field_name': 'next_page_token', 'style': 'form', 'explode': true } } sig { params(namespace_name: ::String, next_page_token: T.nilable(::String)).void } def initialize(namespace_name: nil, next_page_token: nil) @namespace_name = namespace_name @next_page_token = next_page_token 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/getrevisions_request.rb |