Class: Merge::Accounting::AccountingPhoneNumberRequest
- Inherits:
-
Object
- Object
- Merge::Accounting::AccountingPhoneNumberRequest
- Defined in:
- lib/merge_ruby_client/accounting/types/accounting_phone_number_request.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.
- #integration_params ⇒ Hash{String => Object} readonly
- #linked_account_params ⇒ Hash{String => Object} readonly
-
#number ⇒ String
readonly
The phone number.
-
#type ⇒ String
readonly
The phone number’s type.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Merge::Accounting::AccountingPhoneNumberRequest
Deserialize a JSON object to an instance of AccountingPhoneNumberRequest.
-
.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(number: OMIT, type: OMIT, integration_params: OMIT, linked_account_params: OMIT, additional_properties: nil) ⇒ Merge::Accounting::AccountingPhoneNumberRequest constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of AccountingPhoneNumberRequest to a JSON object.
Constructor Details
#initialize(number: OMIT, type: OMIT, integration_params: OMIT, linked_account_params: OMIT, additional_properties: nil) ⇒ Merge::Accounting::AccountingPhoneNumberRequest
37 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_request.rb', line 37 def initialize(number: OMIT, type: OMIT, integration_params: OMIT, linked_account_params: OMIT, additional_properties: nil) @number = number if number != OMIT @type = type if type != OMIT @integration_params = integration_params if integration_params != OMIT @linked_account_params = linked_account_params if linked_account_params != OMIT @additional_properties = additional_properties @_field_set = { "number": number, "type": type, "integration_params": integration_params, "linked_account_params": linked_account_params }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
24 25 26 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number_request.rb', line 24 def additional_properties @additional_properties end |
#integration_params ⇒ Hash{String => Object} (readonly)
20 21 22 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number_request.rb', line 20 def integration_params @integration_params end |
#linked_account_params ⇒ Hash{String => Object} (readonly)
22 23 24 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number_request.rb', line 22 def linked_account_params @linked_account_params end |
#number ⇒ String (readonly)
Returns The phone number.
16 17 18 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number_request.rb', line 16 def number @number end |
#type ⇒ String (readonly)
Returns The phone number’s type.
18 19 20 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number_request.rb', line 18 def type @type end |
Class Method Details
.from_json(json_object:) ⇒ Merge::Accounting::AccountingPhoneNumberRequest
Deserialize a JSON object to an instance of AccountingPhoneNumberRequest
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_request.rb', line 58 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) number = parsed_json["number"] type = parsed_json["type"] integration_params = parsed_json["integration_params"] linked_account_params = parsed_json["linked_account_params"] new( number: number, type: type, integration_params: integration_params, linked_account_params: linked_account_params, 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_request.rb', line 87 def self.validate_raw(obj:) 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.") obj.integration_params&.is_a?(Hash) != false || raise("Passed value for field obj.integration_params is not the expected type, validation failed.") obj.linked_account_params&.is_a?(Hash) != false || raise("Passed value for field obj.linked_account_params is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of AccountingPhoneNumberRequest to a JSON object
77 78 79 |
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number_request.rb', line 77 def to_json(*_args) @_field_set&.to_json end |