Sha256: 3557c169012afb0a722628110225da2210f1c9fa2e72a00849e2fb4ac8361ed2
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class GetWorkspaceAccessRequest < ::OpenApiSDK::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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
speakeasy_client_sdk_ruby-4.2.24 | lib/open_api_sdk/models/operations/getworkspaceaccess_request.rb |