Class: Merge::Accounting::AccountingPhoneNumber
- Inherits:
-
Object
- Object
- Merge::Accounting::AccountingPhoneNumber
- Defined in:
- lib/merge_ruby_client/accounting/types/accounting_phone_number.rb
Overview
# The AccountingPhoneNumber Object
### Description
The `AccountingPhoneNumber` object is used to represent a contact's or company's
phone number.
### Usage Example
Fetch from the `GET CompanyInfo` endpoint and view the company's phone numbers.
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#created_at ⇒ DateTime
readonly
The datetime that this object was created by Merge.
-
#modified_at ⇒ DateTime
readonly
The datetime that this object was modified by Merge.
-
#number ⇒ String
readonly
The phone number.
-
#type ⇒ String
readonly
The phone number’s type.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Merge::Accounting::AccountingPhoneNumber
Deserialize a JSON object to an instance of AccountingPhoneNumber.
-
.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(created_at: OMIT, modified_at: OMIT, number: OMIT, type: OMIT, additional_properties: nil) ⇒ Merge::Accounting::AccountingPhoneNumber constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of AccountingPhoneNumber to a JSON object.
Constructor Details
#initialize(created_at: OMIT, modified_at: OMIT, number: OMIT, type: OMIT, additional_properties: nil) ⇒ Merge::Accounting::AccountingPhoneNumber
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number.rb', line 38 def initialize(created_at: OMIT, modified_at: OMIT, number: OMIT, type: OMIT, additional_properties: nil) @created_at = created_at if created_at != OMIT @modified_at = modified_at if modified_at != OMIT @number = number if number != OMIT @type = type if type != OMIT @additional_properties = additional_properties @_field_set = { "created_at": created_at, "modified_at": modified_at, "number": number, "type": type }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
25 26 27 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number.rb', line 25 def additional_properties @additional_properties end |
#created_at ⇒ DateTime (readonly)
Returns The datetime that this object was created by Merge.
17 18 19 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number.rb', line 17 def created_at @created_at end |
#modified_at ⇒ DateTime (readonly)
Returns The datetime that this object was modified by Merge.
19 20 21 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number.rb', line 19 def modified_at @modified_at end |
#number ⇒ String (readonly)
Returns The phone number.
21 22 23 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number.rb', line 21 def number @number end |
#type ⇒ String (readonly)
Returns The phone number’s type.
23 24 25 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number.rb', line 23 def type @type end |
Class Method Details
.from_json(json_object:) ⇒ Merge::Accounting::AccountingPhoneNumber
Deserialize a JSON object to an instance of AccountingPhoneNumber
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number.rb', line 58 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) created_at = (DateTime.parse(parsed_json["created_at"]) unless parsed_json["created_at"].nil?) modified_at = (DateTime.parse(parsed_json["modified_at"]) unless parsed_json["modified_at"].nil?) number = parsed_json["number"] type = parsed_json["type"] new( created_at: created_at, modified_at: modified_at, number: number, type: 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.
87 88 89 90 91 92 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number.rb', line 87 def self.validate_raw(obj:) obj.created_at&.is_a?(DateTime) != false || raise("Passed value for field obj.created_at is not the expected type, validation failed.") obj.modified_at&.is_a?(DateTime) != false || raise("Passed value for field obj.modified_at is not the expected type, validation failed.") obj.number&.is_a?(String) != false || raise("Passed value for field obj.number is not the expected type, validation failed.") obj.type&.is_a?(String) != false || raise("Passed value for field obj.type is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of AccountingPhoneNumber to a JSON object
77 78 79 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number.rb', line 77 def to_json(*_args) @_field_set&.to_json end |