Class: Merge::Crm::ObjectClassDescriptionRequest
- Inherits:
-
Object
- Object
- Merge::Crm::ObjectClassDescriptionRequest
- Defined in:
- lib/merge_ruby_client/crm/types/object_class_description_request.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #id ⇒ String readonly
- #origin_type ⇒ Merge::Crm::OriginTypeEnum readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Merge::Crm::ObjectClassDescriptionRequest
Deserialize a JSON object to an instance of ObjectClassDescriptionRequest.
-
.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(id:, origin_type:, additional_properties: nil) ⇒ Merge::Crm::ObjectClassDescriptionRequest constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of ObjectClassDescriptionRequest to a JSON object.
Constructor Details
#initialize(id:, origin_type:, additional_properties: nil) ⇒ Merge::Crm::ObjectClassDescriptionRequest
26 27 28 29 30 31 |
# File 'lib/merge_ruby_client/crm/types/object_class_description_request.rb', line 26 def initialize(id:, origin_type:, additional_properties: nil) @id = id @origin_type = origin_type @additional_properties = additional_properties @_field_set = { "id": id, "origin_type": origin_type } end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
15 16 17 |
# File 'lib/merge_ruby_client/crm/types/object_class_description_request.rb', line 15 def additional_properties @additional_properties end |
#id ⇒ String (readonly)
11 12 13 |
# File 'lib/merge_ruby_client/crm/types/object_class_description_request.rb', line 11 def id @id end |
#origin_type ⇒ Merge::Crm::OriginTypeEnum (readonly)
13 14 15 |
# File 'lib/merge_ruby_client/crm/types/object_class_description_request.rb', line 13 def origin_type @origin_type end |
Class Method Details
.from_json(json_object:) ⇒ Merge::Crm::ObjectClassDescriptionRequest
Deserialize a JSON object to an instance of ObjectClassDescriptionRequest
37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/merge_ruby_client/crm/types/object_class_description_request.rb', line 37 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) id = parsed_json["id"] origin_type = parsed_json["origin_type"] new( id: id, origin_type: origin_type, 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.
62 63 64 65 |
# File 'lib/merge_ruby_client/crm/types/object_class_description_request.rb', line 62 def self.validate_raw(obj:) obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.") obj.origin_type.is_a?(Merge::Crm::OriginTypeEnum) != false || raise("Passed value for field obj.origin_type is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of ObjectClassDescriptionRequest to a JSON object
52 53 54 |
# File 'lib/merge_ruby_client/crm/types/object_class_description_request.rb', line 52 def to_json(*_args) @_field_set&.to_json end |