Method: Merge::Crm::NoteOpportunity.from_json
- Defined in:
- lib/merge_ruby_client/crm/types/note_opportunity.rb
.from_json(json_object:) ⇒ Merge::Crm::NoteOpportunity
Deserialize a JSON object to an instance of NoteOpportunity
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/merge_ruby_client/crm/types/note_opportunity.rb', line 14 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) begin struct.is_a?(String) != false || raise("Passed value for field struct is not the expected type, validation failed.") return struct unless struct.nil? return nil rescue StandardError # noop end begin Merge::Crm::Opportunity.validate_raw(obj: struct) return Merge::Crm::Opportunity.from_json(json_object: struct) unless struct.nil? return nil rescue StandardError # noop end struct end |