Class: Ittybit::Automations::AutomationsDeleteResponse
- Inherits:
-
Object
- Object
- Ittybit::Automations::AutomationsDeleteResponse
- Defined in:
- lib/ittybit/automations/types/automations_delete_response.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #message ⇒ String readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Ittybit::Automations::AutomationsDeleteResponse
Deserialize a JSON object to an instance of AutomationsDeleteResponse.
-
.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(message: OMIT, additional_properties: nil) ⇒ Ittybit::Automations::AutomationsDeleteResponse constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of AutomationsDeleteResponse to a JSON object.
Constructor Details
#initialize(message: OMIT, additional_properties: nil) ⇒ Ittybit::Automations::AutomationsDeleteResponse
22 23 24 25 26 27 28 |
# File 'lib/ittybit/automations/types/automations_delete_response.rb', line 22 def initialize(message: OMIT, additional_properties: nil) @message = if != OMIT @additional_properties = additional_properties @_field_set = { "message": }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
12 13 14 |
# File 'lib/ittybit/automations/types/automations_delete_response.rb', line 12 def additional_properties @additional_properties end |
#message ⇒ String (readonly)
10 11 12 |
# File 'lib/ittybit/automations/types/automations_delete_response.rb', line 10 def @message end |
Class Method Details
.from_json(json_object:) ⇒ Ittybit::Automations::AutomationsDeleteResponse
Deserialize a JSON object to an instance of AutomationsDeleteResponse
34 35 36 37 38 39 |
# File 'lib/ittybit/automations/types/automations_delete_response.rb', line 34 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) = parsed_json["message"] new(message: , 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.
54 55 56 |
# File 'lib/ittybit/automations/types/automations_delete_response.rb', line 54 def self.validate_raw(obj:) obj.&.is_a?(String) != false || raise("Passed value for field obj.message is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of AutomationsDeleteResponse to a JSON object
44 45 46 |
# File 'lib/ittybit/automations/types/automations_delete_response.rb', line 44 def to_json(*_args) @_field_set&.to_json end |