Class: Google::Apis::WalletobjectsV1::LoyaltyPointsBalance

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LoyaltyPointsBalance

Returns a new instance of LoyaltyPointsBalance.



5297
5298
5299
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 5297

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#doubleFloat

The double form of a balance. Only one of these subtypes (string, int, double, money) should be populated. Corresponds to the JSON property double

Returns:

  • (Float)


5277
5278
5279
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 5277

def double
  @double
end

#intFixnum

The integer form of a balance. Only one of these subtypes (string, int, double, money) should be populated. Corresponds to the JSON property int

Returns:

  • (Fixnum)


5283
5284
5285
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 5283

def int
  @int
end

#moneyGoogle::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



5289
5290
5291
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 5289

def money
  @money
end

#stringString

The string form of a balance. Only one of these subtypes (string, int, double, money) should be populated. Corresponds to the JSON property string

Returns:

  • (String)


5295
5296
5297
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 5295

def string
  @string
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5302
5303
5304
5305
5306
5307
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 5302

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