Class: Merge::Crm::RemoteFieldClassForCustomObjectClassItemSchema
- Inherits:
-
Object
- Object
- Merge::Crm::RemoteFieldClassForCustomObjectClassItemSchema
- Defined in:
- lib/merge_ruby_client/crm/types/remote_field_class_for_custom_object_class_item_schema.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #item_choices ⇒ Array<String> readonly
- #item_format ⇒ String readonly
- #item_type ⇒ String readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Merge::Crm::RemoteFieldClassForCustomObjectClassItemSchema
Deserialize a JSON object to an instance of RemoteFieldClassForCustomObjectClassItemSchema.
-
.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(item_type: OMIT, item_format: OMIT, item_choices: OMIT, additional_properties: nil) ⇒ Merge::Crm::RemoteFieldClassForCustomObjectClassItemSchema constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of RemoteFieldClassForCustomObjectClassItemSchema to a JSON object.
Constructor Details
#initialize(item_type: OMIT, item_format: OMIT, item_choices: OMIT, additional_properties: nil) ⇒ Merge::Crm::RemoteFieldClassForCustomObjectClassItemSchema
28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/merge_ruby_client/crm/types/remote_field_class_for_custom_object_class_item_schema.rb', line 28 def initialize(item_type: OMIT, item_format: OMIT, item_choices: OMIT, additional_properties: nil) @item_type = item_type if item_type != OMIT @item_format = item_format if item_format != OMIT @item_choices = item_choices if item_choices != OMIT @additional_properties = additional_properties @_field_set = { "item_type": item_type, "item_format": item_format, "item_choices": item_choices }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
16 17 18 |
# File 'lib/merge_ruby_client/crm/types/remote_field_class_for_custom_object_class_item_schema.rb', line 16 def additional_properties @additional_properties end |
#item_choices ⇒ Array<String> (readonly)
14 15 16 |
# File 'lib/merge_ruby_client/crm/types/remote_field_class_for_custom_object_class_item_schema.rb', line 14 def item_choices @item_choices end |
#item_format ⇒ String (readonly)
12 13 14 |
# File 'lib/merge_ruby_client/crm/types/remote_field_class_for_custom_object_class_item_schema.rb', line 12 def item_format @item_format end |
#item_type ⇒ String (readonly)
10 11 12 |
# File 'lib/merge_ruby_client/crm/types/remote_field_class_for_custom_object_class_item_schema.rb', line 10 def item_type @item_type end |
Class Method Details
.from_json(json_object:) ⇒ Merge::Crm::RemoteFieldClassForCustomObjectClassItemSchema
Deserialize a JSON object to an instance of
RemoteFieldClassForCustomObjectClassItemSchema
47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/merge_ruby_client/crm/types/remote_field_class_for_custom_object_class_item_schema.rb', line 47 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) item_type = parsed_json["item_type"] item_format = parsed_json["item_format"] item_choices = parsed_json["item_choices"] new( item_type: item_type, item_format: item_format, item_choices: item_choices, 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.
75 76 77 78 79 |
# File 'lib/merge_ruby_client/crm/types/remote_field_class_for_custom_object_class_item_schema.rb', line 75 def self.validate_raw(obj:) obj.item_type&.is_a?(String) != false || raise("Passed value for field obj.item_type is not the expected type, validation failed.") obj.item_format&.is_a?(String) != false || raise("Passed value for field obj.item_format is not the expected type, validation failed.") obj.item_choices&.is_a?(Array) != false || raise("Passed value for field obj.item_choices is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of RemoteFieldClassForCustomObjectClassItemSchema to a
JSON object
65 66 67 |
# File 'lib/merge_ruby_client/crm/types/remote_field_class_for_custom_object_class_item_schema.rb', line 65 def to_json(*_args) @_field_set&.to_json end |