Sha256: 0f4d3253b7ccce113d1d202dbe5909bb4542aaeeb774c06fe0da7d68c7c15b44
Contents?: true
Size: 1.1 KB
Versions: 33
Compression:
Stored size: 1.1 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Operations class GetWorkspaceAccessRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig # Unique identifier of the generation target. field :gen_lock_id, T.nilable(::String), { 'query_param': { 'field_name': 'genLockId', 'style': 'form', 'explode': true } } # Skip side-effects like incrementing metrics. field :passive, T.nilable(T::Boolean), { 'query_param': { 'field_name': 'passive', 'style': 'form', 'explode': true } } # The type of the generated target. field :target_type, T.nilable(::String), { 'query_param': { 'field_name': 'targetType', 'style': 'form', 'explode': true } } sig { params(gen_lock_id: T.nilable(::String), passive: T.nilable(T::Boolean), target_type: T.nilable(::String)).void } def initialize(gen_lock_id: nil, passive: nil, target_type: nil) @gen_lock_id = gen_lock_id @passive = passive @target_type = target_type end end end end
Version data entries
33 entries across 33 versions & 1 rubygems