Class: PayPal::SDK::Invoice::DataTypes::BusinessInfoType

Inherits:
DataType
  • Object
show all
Defined in:
lib/paypal-sdk/invoice/data_types.rb

Overview

Contact information for a company participating in the invoicing system.

Class Method Summary collapse

Class Method Details

.load_membersObject



181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# File 'lib/paypal-sdk/invoice/data_types.rb', line 181

def self.load_members
  # First name of the company contact. 
  object_of :firstName, String
  # Last name of the company contact. 
  object_of :lastName, String
  # Business name of the company. 
  object_of :businessName, String
  # Phone number for contacting the company. 
  object_of :phone, String
  # Fax number used by the company. 
  object_of :fax, String
  # Website used by the company. 
  object_of :website, String
  # Language of the participant. 
  object_of :language, String
  # Tax ID of the merchant. 
  object_of :taxId, String
  # Custom value to be displayed in the contact information details. 
  object_of :customValue, String
  # Street address of the company. 
  object_of :address, BaseAddress
end