Sha256: fdd07746d0dd5991725393c275b4c28fb98611913eddc6d915e91201a2fc14af
Contents?: true
Size: 905 Bytes
Versions: 1
Compression:
Stored size: 905 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Shared # A workspace and organization class WorkspaceAndOrganization < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # A speakeasy organization field :organization, ::OpenApiSDK::Shared::Organization, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('organization') } } # A speakeasy workspace field :workspace, ::OpenApiSDK::Shared::Workspace, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('workspace') } } sig { params(organization: ::OpenApiSDK::Shared::Organization, workspace: ::OpenApiSDK::Shared::Workspace).void } def initialize(organization: nil, workspace: nil) @organization = organization @workspace = workspace 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/workspaceandorganization.rb |