Sha256: 688d6a6c5f24d0ce2e7e37f20738ee1a5010a906b0d53c6e5a9641a40ef91a23
Contents?: true
Size: 823 Bytes
Versions: 1
Compression:
Stored size: 823 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class UpdateWorkspaceDetailsRequest < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # The workspace details to update. field :workspace, ::OpenApiSDK::Shared::Workspace, { 'request': { 'media_type': 'application/json' } } # Unique identifier of the workspace. field :workspace_id, ::String, { 'path_param': { 'field_name': 'workspace_id', 'style': 'simple', 'explode': false } } sig { params(workspace: ::OpenApiSDK::Shared::Workspace, workspace_id: ::String).void } def initialize(workspace: nil, workspace_id: nil) @workspace = workspace @workspace_id = workspace_id 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/updateworkspacedetails_request.rb |