Class: Google::Apis::WalletobjectsV1::LoyaltyPointsBalance
- Inherits:
-
Object
- Object
- Google::Apis::WalletobjectsV1::LoyaltyPointsBalance
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/walletobjects_v1/classes.rb,
lib/google/apis/walletobjects_v1/representations.rb,
lib/google/apis/walletobjects_v1/representations.rb
Instance Attribute Summary collapse
-
#double ⇒ Float
The double form of a balance.
-
#int ⇒ Fixnum
The integer form of a balance.
-
#money ⇒ Google::Apis::WalletobjectsV1::Money
The money form of a balance.
-
#string ⇒ String
The string form of a balance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LoyaltyPointsBalance
constructor
A new instance of LoyaltyPointsBalance.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LoyaltyPointsBalance
Returns a new instance of LoyaltyPointsBalance.
5673 5674 5675 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 5673 def initialize(**args) update!(**args) end |
Instance Attribute Details
#double ⇒ Float
The double form of a balance. Only one of these subtypes (string, int, double,
money) should be populated.
Corresponds to the JSON property double
5653 5654 5655 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 5653 def double @double end |
#int ⇒ Fixnum
The integer form of a balance. Only one of these subtypes (string, int, double,
money) should be populated.
Corresponds to the JSON property int
5659 5660 5661 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 5659 def int @int end |
#money ⇒ Google::Apis::WalletobjectsV1::Money
The money form of a balance. Only one of these subtypes (string, int, double,
money) should be populated.
Corresponds to the JSON property money
5665 5666 5667 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 5665 def money @money end |
#string ⇒ String
The string form of a balance. Only one of these subtypes (string, int, double,
money) should be populated.
Corresponds to the JSON property string
5671 5672 5673 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 5671 def string @string end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5678 5679 5680 5681 5682 5683 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 5678 def update!(**args) @double = args[:double] if args.key?(:double) @int = args[:int] if args.key?(:int) @money = args[:money] if args.key?(:money) @string = args[:string] if args.key?(:string) end |