Class: LiterLlm::JsonSchemaFormat
- Inherits:
-
Object
- Object
- LiterLlm::JsonSchemaFormat
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#description ⇒ String?
Returns the value of attribute description.
-
#name ⇒ String?
Returns the value of attribute name.
-
#schema ⇒ json_value?
Returns the value of attribute schema.
-
#strict ⇒ Boolean?
Returns the value of attribute strict.
Instance Method Summary collapse
-
#initialize ⇒ JsonSchemaFormat
constructor
A new instance of JsonSchemaFormat.
Constructor Details
#initialize ⇒ JsonSchemaFormat
Returns a new instance of JsonSchemaFormat.
133 |
# File 'sig/types.rbs', line 133
def initialize: (?name: String, ?description: String, ?schema: json_value, ?strict: bool) -> void
|
Instance Attribute Details
#description ⇒ String?
Returns the value of attribute description.
129 130 131 |
# File 'sig/types.rbs', line 129 def description @description end |
#name ⇒ String?
Returns the value of attribute name.
128 129 130 |
# File 'sig/types.rbs', line 128 def name @name end |
#schema ⇒ json_value?
Returns the value of attribute schema.
130 131 132 |
# File 'sig/types.rbs', line 130 def schema @schema end |
#strict ⇒ Boolean?
Returns the value of attribute strict.
131 132 133 |
# File 'sig/types.rbs', line 131 def strict @strict end |