Class: Merge::Accounting::AccountingPhoneNumberRequest

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(number: OMIT, type: OMIT, integration_params: OMIT, linked_account_params: OMIT, additional_properties: nil) ⇒ Merge::Accounting::AccountingPhoneNumberRequest

Parameters:

  • number (String) (defaults to: OMIT)

    The phone number.

  • type (String) (defaults to: OMIT)

    The phone number’s type.

  • integration_params (Hash{String => Object}) (defaults to: OMIT)
  • linked_account_params (Hash{String => Object}) (defaults to: OMIT)
  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



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 =  if  != OMIT
  @additional_properties = additional_properties
  @_field_set = {
    "number": number,
    "type": type,
    "integration_params": integration_params,
    "linked_account_params": 
  }.reject do |_k, v|
    v == OMIT
  end
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    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_paramsHash{String => Object} (readonly)

Returns:

  • (Hash{String => Object})


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_paramsHash{String => Object} (readonly)

Returns:

  • (Hash{String => Object})


22
23
24
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number_request.rb', line 22

def 
  @linked_account_params
end

#numberString (readonly)

Returns The phone number.

Returns:

  • (String)

    The phone number.



16
17
18
# File 'lib/merge_ruby_client/accounting/types/accounting_phone_number_request.rb', line 16

def number
  @number
end

#typeString (readonly)

Returns The phone number’s type.

Returns:

  • (String)

    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

Parameters:

  • json_object (String)

Returns:



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"]
   = parsed_json["linked_account_params"]
  new(
    number: number,
    type: type,
    integration_params: integration_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.

Parameters:

  • obj (Object)

Returns:

  • (Void)


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.&.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

Returns:

  • (String)


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