Class: OpenAI::Models::Admin::Organization::Projects::RoleCreateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Admin::Organization::Projects::RoleCreateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/openai/models/admin/organization/projects/role_create_params.rb
Overview
Instance Attribute Summary collapse
-
#description ⇒ String?
Optional description of the role.
-
#permissions ⇒ Array<String>
Permissions to grant to the role.
- #project_id ⇒ String
-
#role_name ⇒ String
Unique name for the role.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
- #initialize(project_id:, permissions:, role_name:, description: nil, request_options: {}) ⇒ Object constructor
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
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(project_id:, permissions:, role_name:, description: nil, request_options: {}) ⇒ Object
|
|
# File 'lib/openai/models/admin/organization/projects/role_create_params.rb', line 36
|
Instance Attribute Details
#description ⇒ String?
Optional description of the role.
34 |
# File 'lib/openai/models/admin/organization/projects/role_create_params.rb', line 34 optional :description, String, nil?: true |
#permissions ⇒ Array<String>
Permissions to grant to the role.
22 |
# File 'lib/openai/models/admin/organization/projects/role_create_params.rb', line 22 required :permissions, OpenAI::Internal::Type::ArrayOf[String] |
#project_id ⇒ String
16 |
# File 'lib/openai/models/admin/organization/projects/role_create_params.rb', line 16 required :project_id, String |
#role_name ⇒ String
Unique name for the role.
28 |
# File 'lib/openai/models/admin/organization/projects/role_create_params.rb', line 28 required :role_name, String |