Sha256: c02e0565e33ad8624e76d40af5470c80300a3f66dd44a49bef46e29cbec41881
Contents?: true
Size: 749 Bytes
Versions: 1
Compression:
Stored size: 749 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Shared # A document referenced by a workflow class WorkflowDocument < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig field :location, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('location') } } field :auth, T.nilable(::OpenApiSDK::Shared::Auth), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('auth') } } sig { params(location: ::String, auth: T.nilable(::OpenApiSDK::Shared::Auth)).void } def initialize(location: nil, auth: nil) @location = location @auth = auth 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/shared/workflowdocument.rb |