Sha256: 1b180eba45573189c05627455781b0b5a0f169c947954c8a1f823c222642cb85
Contents?: true
Size: 1.14 KB
Versions: 7
Compression:
Stored size: 1.14 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Operations class GetEmbedAccessTokenRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig # The description of the embed access token. field :description, T.nilable(::String), { 'query_param': { 'field_name': 'description', 'style': 'form', 'explode': true } } # The duration (in minutes) of the embed access token. field :duration, T.nilable(::Integer), { 'query_param': { 'field_name': 'duration', 'style': 'form', 'explode': true } } # The filter to apply to the query. field :filters, T.nilable(::SpeakeasyClientSDK::Shared::Filters), { 'query_param': { 'field_name': 'filters', 'serialization': 'json' } } sig { params(description: T.nilable(::String), duration: T.nilable(::Integer), filters: T.nilable(::SpeakeasyClientSDK::Shared::Filters)).void } def initialize(description: nil, duration: nil, filters: nil) @description = description @duration = duration @filters = filters end end end end
Version data entries
7 entries across 7 versions & 1 rubygems