Class: Braintrust::Models::ProjectTag
- Defined in:
- lib/braintrust/models/project_tag.rb
Instance Attribute Summary collapse
-
#color ⇒ String
Color of the tag for the UI.
-
#created ⇒ DateTime
Date of project tag creation.
-
#description ⇒ String
Textual description of the project tag.
-
#id ⇒ String
Unique identifier for the project tag.
-
#name_ ⇒ String
Name of the project tag.
-
#project_id ⇒ String
Unique identifier for the project that the project tag belongs under.
- #user_id ⇒ String
Method Summary
Methods inherited from BaseModel
#[], #initialize, #inspect, #to_h, #to_s
Constructor Details
This class inherits a constructor from Braintrust::BaseModel
Instance Attribute Details
#color ⇒ String
Color of the tag for the UI
28 |
# File 'lib/braintrust/models/project_tag.rb', line 28 optional :color, String |
#created ⇒ DateTime
Date of project tag creation
33 |
# File 'lib/braintrust/models/project_tag.rb', line 33 optional :created, DateTime |
#description ⇒ String
Textual description of the project tag
38 |
# File 'lib/braintrust/models/project_tag.rb', line 38 optional :description, String |
#id ⇒ String
Unique identifier for the project tag
9 |
# File 'lib/braintrust/models/project_tag.rb', line 9 required :id, String |
#name_ ⇒ String
Name of the project tag
14 |
# File 'lib/braintrust/models/project_tag.rb', line 14 required :name_, String |
#project_id ⇒ String
Unique identifier for the project that the project tag belongs under
19 |
# File 'lib/braintrust/models/project_tag.rb', line 19 required :project_id, String |
#user_id ⇒ String
23 |
# File 'lib/braintrust/models/project_tag.rb', line 23 required :user_id, String |