Class: OCI::OspGateway::Models::PaypalPaymentDetail
- Inherits:
-
PaymentDetail
- Object
- PaymentDetail
- OCI::OspGateway::Models::PaypalPaymentDetail
- Defined in:
- lib/oci/osp_gateway/models/paypal_payment_detail.rb
Overview
PayPal Payment related details
Constant Summary
Constants inherited from PaymentDetail
OCI::OspGateway::Models::PaymentDetail::PAYMENT_METHOD_ENUM
Instance Attribute Summary collapse
-
#paypal_id ⇒ String
The id (email address) of the paypal payment.
-
#paypal_reference ⇒ String
paypal payment reference.
Attributes inherited from PaymentDetail
#amount_paid, #paid_by, #payment_method, #time_paid_on
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ PaypalPaymentDetail
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Methods inherited from PaymentDetail
Constructor Details
#initialize(attributes = {}) ⇒ PaypalPaymentDetail
Initializes the object
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/oci/osp_gateway/models/paypal_payment_detail.rb', line 59 def initialize(attributes = {}) return unless attributes.is_a?(Hash) attributes['paymentMethod'] = 'PAYPAL' super(attributes) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.paypal_id = attributes[:'paypalId'] if attributes[:'paypalId'] raise 'You cannot provide both :paypalId and :paypal_id' if attributes.key?(:'paypalId') && attributes.key?(:'paypal_id') self.paypal_id = attributes[:'paypal_id'] if attributes[:'paypal_id'] self.paypal_reference = attributes[:'paypalReference'] if attributes[:'paypalReference'] raise 'You cannot provide both :paypalReference and :paypal_reference' if attributes.key?(:'paypalReference') && attributes.key?(:'paypal_reference') self.paypal_reference = attributes[:'paypal_reference'] if attributes[:'paypal_reference'] end |
Instance Attribute Details
#paypal_id ⇒ String
The id (email address) of the paypal payment
14 15 16 |
# File 'lib/oci/osp_gateway/models/paypal_payment_detail.rb', line 14 def paypal_id @paypal_id end |
#paypal_reference ⇒ String
paypal payment reference
18 19 20 |
# File 'lib/oci/osp_gateway/models/paypal_payment_detail.rb', line 18 def paypal_reference @paypal_reference end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/oci/osp_gateway/models/paypal_payment_detail.rb', line 21 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'time_paid_on': :'timePaidOn', 'paid_by': :'paidBy', 'payment_method': :'paymentMethod', 'amount_paid': :'amountPaid', 'paypal_id': :'paypalId', 'paypal_reference': :'paypalReference' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/oci/osp_gateway/models/paypal_payment_detail.rb', line 35 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'time_paid_on': :'DateTime', 'paid_by': :'String', 'payment_method': :'String', 'amount_paid': :'Float', 'paypal_id': :'String', 'paypal_reference': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/oci/osp_gateway/models/paypal_payment_detail.rb', line 89 def ==(other) return true if equal?(other) self.class == other.class && time_paid_on == other.time_paid_on && paid_by == other.paid_by && payment_method == other.payment_method && amount_paid == other.amount_paid && paypal_id == other.paypal_id && paypal_reference == other.paypal_reference end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/oci/osp_gateway/models/paypal_payment_detail.rb', line 124 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
104 105 106 |
# File 'lib/oci/osp_gateway/models/paypal_payment_detail.rb', line 104 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
113 114 115 |
# File 'lib/oci/osp_gateway/models/paypal_payment_detail.rb', line 113 def hash [time_paid_on, paid_by, payment_method, amount_paid, paypal_id, paypal_reference].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
157 158 159 160 161 162 163 164 165 166 |
# File 'lib/oci/osp_gateway/models/paypal_payment_detail.rb', line 157 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
151 152 153 |
# File 'lib/oci/osp_gateway/models/paypal_payment_detail.rb', line 151 def to_s to_hash.to_s end |