Class: Anthropic::Models::Beta::Organization::BetaAPIKeyWorkspaceScope
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Anthropic::Models::Beta::Organization::BetaAPIKeyWorkspaceScope
- Defined in:
- lib/anthropic/models/beta/organization/beta_api_key_workspace_scope.rb,
sig/anthropic/models/beta/organization/beta_api_key_workspace_scope.rbs
Instance Attribute Summary collapse
-
#type ⇒ Symbol, :workspace
Scope type.
-
#workspace_id ⇒ String
ID of the Workspace the API key belongs to.
Instance Method Summary collapse
-
#initialize(workspace_id:, type: :workspace) ⇒ BetaAPIKeyWorkspaceScope
constructor
Some parameter documentations has been truncated, see BetaAPIKeyWorkspaceScope for more details.
- #to_hash ⇒ { type: :workspace, workspace_id: String }
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(workspace_id:, type: :workspace) ⇒ BetaAPIKeyWorkspaceScope
Some parameter documentations has been truncated, see Anthropic::Models::Beta::Organization::BetaAPIKeyWorkspaceScope for more details.
|
|
# File 'lib/anthropic/models/beta/organization/beta_api_key_workspace_scope.rb', line 22
|
Instance Attribute Details
#type ⇒ Symbol, :workspace
Scope type. Always "workspace": the API key belongs to one Workspace.
12 |
# File 'lib/anthropic/models/beta/organization/beta_api_key_workspace_scope.rb', line 12 required :type, const: :workspace |
#workspace_id ⇒ String
ID of the Workspace the API key belongs to. Unlike the deprecated top-level
workspace_id, this is the Workspace's real ID even for the organization's
default Workspace.
20 |
# File 'lib/anthropic/models/beta/organization/beta_api_key_workspace_scope.rb', line 20 required :workspace_id, String |
Instance Method Details
#to_hash ⇒ { type: :workspace, workspace_id: String }
15 |
# File 'sig/anthropic/models/beta/organization/beta_api_key_workspace_scope.rbs', line 15
def to_hash: -> { type: :workspace, workspace_id: String }
|