Class: Vellum::SearchResultDocumentRequest
- Inherits:
-
Object
- Object
- Vellum::SearchResultDocumentRequest
- Defined in:
- lib/vellum_ai/types/search_result_document_request.rb
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
readonly
Returns the value of attribute additional_properties.
-
#external_id ⇒ Object
readonly
Returns the value of attribute external_id.
-
#label ⇒ Object
readonly
Returns the value of attribute label.
-
#metadata ⇒ Object
readonly
Returns the value of attribute metadata.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ SearchResultDocumentRequest
Deserialize a JSON object to an instance of SearchResultDocumentRequest.
-
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.
Instance Method Summary collapse
- #initialize(label:, external_id: nil, metadata: nil, additional_properties: nil) ⇒ SearchResultDocumentRequest constructor
-
#to_json(*_args) ⇒ JSON
Serialize an instance of SearchResultDocumentRequest to a JSON object.
Constructor Details
#initialize(label:, external_id: nil, metadata: nil, additional_properties: nil) ⇒ SearchResultDocumentRequest
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/vellum_ai/types/search_result_document_request.rb', line 14 def initialize(label:, external_id: nil, metadata: nil, additional_properties: nil) # @type [String] The human-readable name for the document. @label = label # @type [String] The unique ID of the document as represented in an external system and specified when it was originally uploaded. @external_id = external_id # @type [Hash{String => String}] A previously supplied JSON object containing metadata that can be filtered on when searching. @metadata = # @type [OpenStruct] Additional properties unmapped to the current class definition @additional_properties = additional_properties end |
Instance Attribute Details
#additional_properties ⇒ Object (readonly)
Returns the value of attribute additional_properties.
7 8 9 |
# File 'lib/vellum_ai/types/search_result_document_request.rb', line 7 def additional_properties @additional_properties end |
#external_id ⇒ Object (readonly)
Returns the value of attribute external_id.
7 8 9 |
# File 'lib/vellum_ai/types/search_result_document_request.rb', line 7 def external_id @external_id end |
#label ⇒ Object (readonly)
Returns the value of attribute label.
7 8 9 |
# File 'lib/vellum_ai/types/search_result_document_request.rb', line 7 def label @label end |
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
7 8 9 |
# File 'lib/vellum_ai/types/search_result_document_request.rb', line 7 def @metadata end |
Class Method Details
.from_json(json_object:) ⇒ SearchResultDocumentRequest
Deserialize a JSON object to an instance of SearchResultDocumentRequest
29 30 31 32 33 34 35 36 |
# File 'lib/vellum_ai/types/search_result_document_request.rb', line 29 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) JSON.parse(json_object) label = struct.label external_id = struct.external_id = struct. new(label: label, external_id: external_id, metadata: , additional_properties: struct) end |
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.
49 50 51 52 53 |
# File 'lib/vellum_ai/types/search_result_document_request.rb', line 49 def self.validate_raw(obj:) obj.label.is_a?(String) != false || raise("Passed value for field obj.label is not the expected type, validation failed.") obj.external_id&.is_a?(String) != false || raise("Passed value for field obj.external_id is not the expected type, validation failed.") obj.&.is_a?(Hash) != false || raise("Passed value for field obj.metadata is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ JSON
Serialize an instance of SearchResultDocumentRequest to a JSON object
41 42 43 |
# File 'lib/vellum_ai/types/search_result_document_request.rb', line 41 def to_json(*_args) { "label": @label, "external_id": @external_id, "metadata": @metadata }.to_json end |