Class: Google::Apis::WalletobjectsV1::SmartTap
- Inherits:
-
Object
- Object
- Google::Apis::WalletobjectsV1::SmartTap
- 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
-
#id ⇒ String
The unique identifier for a smart tap.
-
#infos ⇒ Array<Google::Apis::WalletobjectsV1::IssuerToUserInfo>
Communication from merchant to user.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#merchant_id ⇒ Fixnum
Smart Tap merchant ID of who engaged in the Smart Tap interaction.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SmartTap
constructor
A new instance of SmartTap.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SmartTap
Returns a new instance of SmartTap.
7522 7523 7524 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7522 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The unique identifier for a smart tap. This value should follow the format
issuer ID.identifier where the former is issued by Google and latter is the
Smart Tap id. The Smart Tap id is a Base64 encoded string which represents the
id which was generated by the Google Pay app.
Corresponds to the JSON property id
7504 7505 7506 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7504 def id @id end |
#infos ⇒ Array<Google::Apis::WalletobjectsV1::IssuerToUserInfo>
Communication from merchant to user.
Corresponds to the JSON property infos
7509 7510 7511 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7509 def infos @infos end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
walletobjects#smartTap"
.
Corresponds to the JSON property kind
7515 7516 7517 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7515 def kind @kind end |
#merchant_id ⇒ Fixnum
Smart Tap merchant ID of who engaged in the Smart Tap interaction.
Corresponds to the JSON property merchantId
7520 7521 7522 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7520 def merchant_id @merchant_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7527 7528 7529 7530 7531 7532 |
# File 'lib/google/apis/walletobjects_v1/classes.rb', line 7527 def update!(**args) @id = args[:id] if args.key?(:id) @infos = args[:infos] if args.key?(:infos) @kind = args[:kind] if args.key?(:kind) @merchant_id = args[:merchant_id] if args.key?(:merchant_id) end |