Class: PaypalServerSdk::BlikPaymentObject

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

Overview

Information used to pay using BLIK.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(name: SKIP, country_code: SKIP, email: SKIP, one_click: SKIP) ⇒ BlikPaymentObject

Returns a new instance of BlikPaymentObject.



62
63
64
65
66
67
# File 'lib/paypal_server_sdk/models/blik_payment_object.rb', line 62

def initialize(name: SKIP, country_code: SKIP, email: SKIP, one_click: SKIP)
  @name = name unless name == SKIP
  @country_code = country_code unless country_code == SKIP
  @email = email unless email == SKIP
  @one_click = one_click unless one_click == SKIP
end

Instance Attribute Details

#country_codeString

The [two-character ISO 3166-1 code](/api/rest/reference/country-codes/) that identifies the country or region.<blockquote><strong>Note:</strong> The country code for Great Britain is GB and not UK as used in the top-level domain names for that country. Use the ‘C2` country code for China worldwide for comparable uncontrolled price (CUP) method, bank card, and cross-border transactions.</blockquote>

Returns:

  • (String)


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

def country_code
  @country_code
end

#emailString

The internationalized email address.<blockquote><strong>Note:</strong> 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.</blockquote>

Returns:

  • (String)


31
32
33
# File 'lib/paypal_server_sdk/models/blik_payment_object.rb', line 31

def email
  @email
end

#nameString

The full name representation like Mr J Smith.

Returns:

  • (String)


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

def name
  @name
end

#one_clickBlikOneClickPaymentObject

Information used to pay using BLIK one-click flow.



35
36
37
# File 'lib/paypal_server_sdk/models/blik_payment_object.rb', line 35

def one_click
  @one_click
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/paypal_server_sdk/models/blik_payment_object.rb', line 70

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  name = hash.key?('name') ? hash['name'] : SKIP
  country_code = hash.key?('country_code') ? hash['country_code'] : SKIP
  email = hash.key?('email') ? hash['email'] : SKIP
  one_click = BlikOneClickPaymentObject.from_hash(hash['one_click']) if hash['one_click']

  # Create object from extracted values.
  BlikPaymentObject.new(name: name,
                        country_code: country_code,
                        email: email,
                        one_click: one_click)
end

.namesObject

A mapping from model property names to API property names.



38
39
40
41
42
43
44
45
# File 'lib/paypal_server_sdk/models/blik_payment_object.rb', line 38

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['name'] = 'name'
  @_hash['country_code'] = 'country_code'
  @_hash['email'] = 'email'
  @_hash['one_click'] = 'one_click'
  @_hash
end

.nullablesObject

An array for nullable fields



58
59
60
# File 'lib/paypal_server_sdk/models/blik_payment_object.rb', line 58

def self.nullables
  []
end

.optionalsObject

An array for optional fields



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

def self.optionals
  %w[
    name
    country_code
    email
    one_click
  ]
end