Class: PaypalServerSdk::PaymentTokenRequestCard

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/paypal_server_sdk/models/payment_token_request_card.rb

Overview

A Resource representing a request to vault a Card.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#check_for_conflict, #process_additional_properties, #process_array, #process_basic_value, #process_hash, #to_hash, #to_json

Constructor Details

#initialize(name: SKIP, number: SKIP, expiry: SKIP, security_code: SKIP, brand: SKIP, billing_address: SKIP) ⇒ PaymentTokenRequestCard

Returns a new instance of PaymentTokenRequestCard.



74
75
76
77
78
79
80
81
82
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 74

def initialize(name: SKIP, number: SKIP, expiry: SKIP, security_code: SKIP,
               brand: SKIP, billing_address: SKIP)
  @name = name unless name == SKIP
  @number = number unless number == SKIP
  @expiry = expiry unless expiry == SKIP
  @security_code = security_code unless security_code == SKIP
  @brand = brand unless brand == SKIP
  @billing_address = billing_address unless billing_address == SKIP
end

Instance Attribute Details

#billing_addressAddress

The portable international postal address. Maps to [AddressValidationMetadata](github.com/googlei18n/libaddressinput/ wiki/AddressValidationMetadata) and HTML 5.1 [Autofilling form controls: the autocomplete attribute](www.w3.org/TR/html51/sec-forms.html#autofilling-form-co ntrols-the-autocomplete-attribute).

Returns:



43
44
45
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 43

def billing_address
  @billing_address
end

#brandCardBrand

The card network or brand. Applies to credit, debit, gift, and payment cards.

Returns:



34
35
36
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 34

def brand
  @brand
end

#expiryString

The year and month, in ISO-8601 ‘YYYY-MM` date format. See [Internet date and time format](tools.ietf.org/html/rfc3339#section-5.6).

Returns:

  • (String)


23
24
25
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 23

def expiry
  @expiry
end

#nameString

The card holder’s name as it appears on the card.

Returns:

  • (String)


14
15
16
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 14

def name
  @name
end

#numberString

The primary account number (PAN) for the payment card.

Returns:

  • (String)


18
19
20
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 18

def number
  @number
end

#security_codeString

The three- or four-digit security code of the card. Also known as the CVV, CVC, CVN, CVE, or CID. This parameter cannot be present in the request when ‘payment_initiator=MERCHANT`.

Returns:

  • (String)


29
30
31
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 29

def security_code
  @security_code
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 85

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  name = hash.key?('name') ? hash['name'] : SKIP
  number = hash.key?('number') ? hash['number'] : SKIP
  expiry = hash.key?('expiry') ? hash['expiry'] : SKIP
  security_code = hash.key?('security_code') ? hash['security_code'] : SKIP
  brand = hash.key?('brand') ? hash['brand'] : SKIP
  billing_address = Address.from_hash(hash['billing_address']) if hash['billing_address']

  # Create object from extracted values.
  PaymentTokenRequestCard.new(name: name,
                              number: number,
                              expiry: expiry,
                              security_code: security_code,
                              brand: brand,
                              billing_address: billing_address)
end

.namesObject

A mapping from model property names to API property names.



46
47
48
49
50
51
52
53
54
55
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 46

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['name'] = 'name'
  @_hash['number'] = 'number'
  @_hash['expiry'] = 'expiry'
  @_hash['security_code'] = 'security_code'
  @_hash['brand'] = 'brand'
  @_hash['billing_address'] = 'billing_address'
  @_hash
end

.nullablesObject

An array for nullable fields



70
71
72
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 70

def self.nullables
  []
end

.optionalsObject

An array for optional fields



58
59
60
61
62
63
64
65
66
67
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 58

def self.optionals
  %w[
    name
    number
    expiry
    security_code
    brand
    billing_address
  ]
end

Instance Method Details

#inspectObject

Provides a debugging-friendly string with detailed object information.



113
114
115
116
117
118
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 113

def inspect
  class_name = self.class.name.split('::').last
  "<#{class_name} name: #{@name.inspect}, number: #{@number.inspect}, expiry:"\
  " #{@expiry.inspect}, security_code: #{@security_code.inspect}, brand: #{@brand.inspect},"\
  " billing_address: #{@billing_address.inspect}>"
end

#to_sObject

Provides a human-readable string representation of the object.



106
107
108
109
110
# File 'lib/paypal_server_sdk/models/payment_token_request_card.rb', line 106

def to_s
  class_name = self.class.name.split('::').last
  "<#{class_name} name: #{@name}, number: #{@number}, expiry: #{@expiry}, security_code:"\
  " #{@security_code}, brand: #{@brand}, billing_address: #{@billing_address}>"
end