Class: OpenAI::Models::Admin::Organization::Group

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/openai/models/admin/organization/group.rb

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

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(id:, created_at:, group_type:, is_scim_managed:, name:) ⇒ Object

Some parameter documentations has been truncated, see OpenAI::Models::Admin::Organization::Group for more details.

Details about an organization group.

Parameters:

  • id (String)

    Identifier for the group.

  • created_at (Integer)

    Unix timestamp (in seconds) when the group was created.

  • group_type (String)

    The type of the group.

  • is_scim_managed (Boolean)

    Whether the group is managed through SCIM and controlled by your identity provid

  • name (String)

    Display name of the group.



# File 'lib/openai/models/admin/organization/group.rb', line 40

Instance Attribute Details

#created_atInteger

Unix timestamp (in seconds) when the group was created.

Returns:

  • (Integer)


19
# File 'lib/openai/models/admin/organization/group.rb', line 19

required :created_at, Integer

#group_typeString

The type of the group.

Returns:

  • (String)


25
# File 'lib/openai/models/admin/organization/group.rb', line 25

required :group_type, String

#idString

Identifier for the group.

Returns:

  • (String)


13
# File 'lib/openai/models/admin/organization/group.rb', line 13

required :id, String

#is_scim_managedBoolean

Whether the group is managed through SCIM and controlled by your identity provider.

Returns:



32
# File 'lib/openai/models/admin/organization/group.rb', line 32

required :is_scim_managed, OpenAI::Internal::Type::Boolean

#nameString

Display name of the group.

Returns:

  • (String)


38
# File 'lib/openai/models/admin/organization/group.rb', line 38

required :name, String