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