Class: PaypalServerSdk::VaultPaypalWalletRequest

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

Overview

A resource representing a request to vault PayPal Wallet.

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(description: SKIP, usage_pattern: SKIP, shipping: SKIP, permit_multiple_payment_tokens: false, usage_type: SKIP, customer_type: SKIP, billing_plan: SKIP, experience_context: SKIP) ⇒ VaultPaypalWalletRequest

Returns a new instance of VaultPaypalWalletRequest.



90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'lib/paypal_server_sdk/models/vault_paypal_wallet_request.rb', line 90

def initialize(description: SKIP, usage_pattern: SKIP, shipping: SKIP,
               permit_multiple_payment_tokens: false, usage_type: SKIP,
               customer_type: SKIP, billing_plan: SKIP,
               experience_context: SKIP)
  @description = description unless description == SKIP
  @usage_pattern = usage_pattern unless usage_pattern == SKIP
  @shipping = shipping unless shipping == SKIP
  unless permit_multiple_payment_tokens == SKIP
    @permit_multiple_payment_tokens =
      permit_multiple_payment_tokens
  end
  @usage_type = usage_type unless usage_type == SKIP
  @customer_type = customer_type unless customer_type == SKIP
  @billing_plan = billing_plan unless billing_plan == SKIP
  @experience_context = experience_context unless experience_context == SKIP
end

Instance Attribute Details

#billing_planPlan

The merchant level Recurring Billing plan metadata for the Billing Agreement.

Returns:



50
51
52
# File 'lib/paypal_server_sdk/models/vault_paypal_wallet_request.rb', line 50

def billing_plan
  @billing_plan
end

#customer_typePaypalPaymentTokenCustomerType

The customer type associated with a digital wallet payment token. This is to indicate whether the customer acting on the merchant / platform is either a business or a consumer.



45
46
47
# File 'lib/paypal_server_sdk/models/vault_paypal_wallet_request.rb', line 45

def customer_type
  @customer_type
end

#descriptionString

The description displayed to the consumer on the approval flow for a digital wallet, as well as on the merchant view of the payment token management experience. exp: PayPal.com.

Returns:

  • (String)


16
17
18
# File 'lib/paypal_server_sdk/models/vault_paypal_wallet_request.rb', line 16

def description
  @description
end

#experience_contextVaultExperienceContext

Customizes the Vault creation flow experience for your customers.



54
55
56
# File 'lib/paypal_server_sdk/models/vault_paypal_wallet_request.rb', line 54

def experience_context
  @experience_context
end

#permit_multiple_payment_tokensTrueClass | FalseClass

Create multiple payment tokens for the same payer, merchant/platform combination. Use this when the customer has not logged in at merchant/platform. The payment token thus generated, can then also be used to create the customer account at merchant/platform. Use this also when multiple payment tokens are required for the same payer, different customer at merchant/platform. This helps to identify customers distinctly even though they may share the same PayPal account. This only applies to PayPal payment source.

Returns:

  • (TrueClass | FalseClass)


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

def permit_multiple_payment_tokens
  @permit_multiple_payment_tokens
end

#shippingVaultedDigitalWalletShippingDetails

The shipping details.



24
25
26
# File 'lib/paypal_server_sdk/models/vault_paypal_wallet_request.rb', line 24

def shipping
  @shipping
end

#usage_patternUsagePattern

Expected business/charge model for the billing agreement.

Returns:



20
21
22
# File 'lib/paypal_server_sdk/models/vault_paypal_wallet_request.rb', line 20

def usage_pattern
  @usage_pattern
end

#usage_typePaypalPaymentTokenUsageType

The usage type associated with a digital wallet payment token.



39
40
41
# File 'lib/paypal_server_sdk/models/vault_paypal_wallet_request.rb', line 39

def usage_type
  @usage_type
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/paypal_server_sdk/models/vault_paypal_wallet_request.rb', line 108

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  description = hash.key?('description') ? hash['description'] : SKIP
  usage_pattern = hash.key?('usage_pattern') ? hash['usage_pattern'] : SKIP
  shipping = VaultedDigitalWalletShippingDetails.from_hash(hash['shipping']) if
    hash['shipping']
  permit_multiple_payment_tokens =
    hash['permit_multiple_payment_tokens'] ||= false
  usage_type = hash.key?('usage_type') ? hash['usage_type'] : SKIP
  customer_type = hash.key?('customer_type') ? hash['customer_type'] : SKIP
  billing_plan = Plan.from_hash(hash['billing_plan']) if hash['billing_plan']
  experience_context = VaultExperienceContext.from_hash(hash['experience_context']) if
    hash['experience_context']

  # Create object from extracted values.
  VaultPaypalWalletRequest.new(description: description,
                               usage_pattern: usage_pattern,
                               shipping: shipping,
                               permit_multiple_payment_tokens: permit_multiple_payment_tokens,
                               usage_type: usage_type,
                               customer_type: customer_type,
                               billing_plan: billing_plan,
                               experience_context: experience_context)
end

.namesObject

A mapping from model property names to API property names.



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

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['description'] = 'description'
  @_hash['usage_pattern'] = 'usage_pattern'
  @_hash['shipping'] = 'shipping'
  @_hash['permit_multiple_payment_tokens'] =
    'permit_multiple_payment_tokens'
  @_hash['usage_type'] = 'usage_type'
  @_hash['customer_type'] = 'customer_type'
  @_hash['billing_plan'] = 'billing_plan'
  @_hash['experience_context'] = 'experience_context'
  @_hash
end

.nullablesObject

An array for nullable fields



86
87
88
# File 'lib/paypal_server_sdk/models/vault_paypal_wallet_request.rb', line 86

def self.nullables
  []
end

.optionalsObject

An array for optional fields



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

def self.optionals
  %w[
    description
    usage_pattern
    shipping
    permit_multiple_payment_tokens
    usage_type
    customer_type
    billing_plan
    experience_context
  ]
end

Instance Method Details

#inspectObject

Provides a debugging-friendly string with detailed object information.



145
146
147
148
149
150
151
152
# File 'lib/paypal_server_sdk/models/vault_paypal_wallet_request.rb', line 145

def inspect
  class_name = self.class.name.split('::').last
  "<#{class_name} description: #{@description.inspect}, usage_pattern:"\
  " #{@usage_pattern.inspect}, shipping: #{@shipping.inspect}, permit_multiple_payment_tokens:"\
  " #{@permit_multiple_payment_tokens.inspect}, usage_type: #{@usage_type.inspect},"\
  " customer_type: #{@customer_type.inspect}, billing_plan: #{@billing_plan.inspect},"\
  " experience_context: #{@experience_context.inspect}>"
end

#to_sObject

Provides a human-readable string representation of the object.



136
137
138
139
140
141
142
# File 'lib/paypal_server_sdk/models/vault_paypal_wallet_request.rb', line 136

def to_s
  class_name = self.class.name.split('::').last
  "<#{class_name} description: #{@description}, usage_pattern: #{@usage_pattern}, shipping:"\
  " #{@shipping}, permit_multiple_payment_tokens: #{@permit_multiple_payment_tokens},"\
  " usage_type: #{@usage_type}, customer_type: #{@customer_type}, billing_plan:"\
  " #{@billing_plan}, experience_context: #{@experience_context}>"
end