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



174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
# File 'lib/paypal-sdk/invoice/data_types.rb', line 174

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
  # Custom value to be displayed in the contact information details. 
  object_of :customValue, String
  # Street address of the company. 
  object_of :address, BaseAddress
end