Class: PaypalServerSdk::SubscriptionCustomerInformation
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- PaypalServerSdk::SubscriptionCustomerInformation
- Defined in:
- lib/paypal_server_sdk/models/subscription_customer_information.rb
Overview
The details about a customer in PayPal’s system of record.
Instance Attribute Summary collapse
-
#email_address ⇒ String
The internationalized email address.
-
#id ⇒ String
The unique ID for a customer generated by PayPal.
-
#phone ⇒ PhoneWithType
The phone information.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
-
.nullables ⇒ Object
An array for nullable fields.
-
.optionals ⇒ Object
An array for optional fields.
Instance Method Summary collapse
-
#initialize(id: SKIP, email_address: SKIP, phone: SKIP) ⇒ SubscriptionCustomerInformation
constructor
A new instance of SubscriptionCustomerInformation.
-
#inspect ⇒ Object
Provides a debugging-friendly string with detailed object information.
-
#to_s ⇒ Object
Provides a human-readable string representation of the object.
Methods inherited from BaseModel
#check_for_conflict, #process_additional_properties, #process_array, #process_basic_value, #process_hash, #to_hash, #to_json
Constructor Details
#initialize(id: SKIP, email_address: SKIP, phone: SKIP) ⇒ SubscriptionCustomerInformation
Returns a new instance of SubscriptionCustomerInformation.
50 51 52 53 54 |
# File 'lib/paypal_server_sdk/models/subscription_customer_information.rb', line 50 def initialize(id: SKIP, email_address: SKIP, phone: SKIP) @id = id unless id == SKIP @email_address = email_address unless email_address == SKIP @phone = phone unless phone == SKIP end |
Instance Attribute Details
#email_address ⇒ String
The internationalized email address. Note: Up to 64 characters are allowed before and 255 characters are allowed after the @ sign. However, the generally accepted maximum length for an email address is 254 characters. The pattern verifies that an unquoted @ sign exists.
21 22 23 |
# File 'lib/paypal_server_sdk/models/subscription_customer_information.rb', line 21 def email_address @email_address end |
#id ⇒ String
The unique ID for a customer generated by PayPal.
14 15 16 |
# File 'lib/paypal_server_sdk/models/subscription_customer_information.rb', line 14 def id @id end |
#phone ⇒ PhoneWithType
The phone information.
25 26 27 |
# File 'lib/paypal_server_sdk/models/subscription_customer_information.rb', line 25 def phone @phone end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/paypal_server_sdk/models/subscription_customer_information.rb', line 57 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. id = hash.key?('id') ? hash['id'] : SKIP email_address = hash.key?('email_address') ? hash['email_address'] : SKIP phone = PhoneWithType.from_hash(hash['phone']) if hash['phone'] # Create object from extracted values. SubscriptionCustomerInformation.new(id: id, email_address: email_address, phone: phone) end |
.names ⇒ Object
A mapping from model property names to API property names.
28 29 30 31 32 33 34 |
# File 'lib/paypal_server_sdk/models/subscription_customer_information.rb', line 28 def self.names @_hash = {} if @_hash.nil? @_hash['id'] = 'id' @_hash['email_address'] = 'email_address' @_hash['phone'] = 'phone' @_hash end |
.nullables ⇒ Object
An array for nullable fields
46 47 48 |
# File 'lib/paypal_server_sdk/models/subscription_customer_information.rb', line 46 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
37 38 39 40 41 42 43 |
# File 'lib/paypal_server_sdk/models/subscription_customer_information.rb', line 37 def self.optionals %w[ id email_address phone ] end |
Instance Method Details
#inspect ⇒ Object
Provides a debugging-friendly string with detailed object information.
78 79 80 81 82 |
# File 'lib/paypal_server_sdk/models/subscription_customer_information.rb', line 78 def inspect class_name = self.class.name.split('::').last "<#{class_name} id: #{@id.inspect}, email_address: #{@email_address.inspect}, phone:"\ " #{@phone.inspect}>" end |
#to_s ⇒ Object
Provides a human-readable string representation of the object.
72 73 74 75 |
# File 'lib/paypal_server_sdk/models/subscription_customer_information.rb', line 72 def to_s class_name = self.class.name.split('::').last "<#{class_name} id: #{@id}, email_address: #{@email_address}, phone: #{@phone}>" end |