Class: Vellum::EventCreateResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/vellum_ai/types/event_create_response.rb

Overview

Response serializer for successful event creation.

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(success: OMIT, additional_properties: nil) ⇒ Vellum::EventCreateResponse



21
22
23
24
25
26
27
# File 'lib/vellum_ai/types/event_create_response.rb', line 21

def initialize(success: OMIT, additional_properties: nil)
  @success = success if success != OMIT
  @additional_properties = additional_properties
  @_field_set = { "success": success }.reject do | _k, v |
  v == OMIT
end
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)



11
12
13
# File 'lib/vellum_ai/types/event_create_response.rb', line 11

def additional_properties
  @additional_properties
end

#successBoolean (readonly)



9
10
11
# File 'lib/vellum_ai/types/event_create_response.rb', line 9

def success
  @success
end

Class Method Details

.from_json(json_object:) ⇒ Vellum::EventCreateResponse



32
33
34
35
36
37
# File 'lib/vellum_ai/types/event_create_response.rb', line 32

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  success = parsed_json["success"]
  new(success: success, additional_properties: struct)
end

.validate_raw(obj:) ⇒ Void



50
51
52
# File 'lib/vellum_ai/types/event_create_response.rb', line 50

def self.validate_raw(obj:)
  obj.success&.is_a?(Boolean) != false || raise("Passed value for field obj.success is not the expected type, validation failed.")
end

Instance Method Details

#to_jsonString



41
42
43
# File 'lib/vellum_ai/types/event_create_response.rb', line 41

def to_json
  @_field_set&.to_json
end