Class: Anthropic::Models::Beta::Organization::BetaAPIKeyUserActor
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Anthropic::Models::Beta::Organization::BetaAPIKeyUserActor
- Defined in:
- lib/anthropic/models/beta/organization/beta_api_key_user_actor.rb,
sig/anthropic/models/beta/organization/beta_api_key_user_actor.rbs
Instance Attribute Summary collapse
-
#type ⇒ Symbol, :user_actor
Principal type.
-
#user_id ⇒ String
ID of the User the API key acts as.
Instance Method Summary collapse
-
#initialize(user_id:, type: :user_actor) ⇒ BetaAPIKeyUserActor
constructor
A new instance of BetaAPIKeyUserActor.
- #to_hash ⇒ { type: :user_actor, user_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(user_id:, type: :user_actor) ⇒ BetaAPIKeyUserActor
Returns a new instance of BetaAPIKeyUserActor.
|
|
# File 'lib/anthropic/models/beta/organization/beta_api_key_user_actor.rb', line 20
|
Instance Attribute Details
#type ⇒ Symbol, :user_actor
Principal type. Always "user_actor" for a User.
12 |
# File 'lib/anthropic/models/beta/organization/beta_api_key_user_actor.rb', line 12 required :type, const: :user_actor |
#user_id ⇒ String
ID of the User the API key acts as.
18 |
# File 'lib/anthropic/models/beta/organization/beta_api_key_user_actor.rb', line 18 required :user_id, String |
Instance Method Details
#to_hash ⇒ { type: :user_actor, user_id: String }
14 |
# File 'sig/anthropic/models/beta/organization/beta_api_key_user_actor.rbs', line 14
def to_hash: -> { type: :user_actor, user_id: String }
|