Class: Google::Apis::AndroidenterpriseV1::ProductApprovalEvent
- Inherits:
-
Object
- Object
- Google::Apis::AndroidenterpriseV1::ProductApprovalEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidenterprise_v1/classes.rb,
generated/google/apis/androidenterprise_v1/representations.rb,
generated/google/apis/androidenterprise_v1/representations.rb
Overview
An event generated when a product's approval status is changed.
Instance Attribute Summary collapse
-
#approved ⇒ String
Whether the product was approved or unapproved.
-
#product_id ⇒ String
The id of the product (e.g. "app:com.google.android.gm") for which the approval status has changed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProductApprovalEvent
constructor
A new instance of ProductApprovalEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ProductApprovalEvent
Returns a new instance of ProductApprovalEvent
1549 1550 1551 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1549 def initialize(**args) update!(**args) end |
Instance Attribute Details
#approved ⇒ String
Whether the product was approved or unapproved. This field will always be
present.
Corresponds to the JSON property approved
1541 1542 1543 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1541 def approved @approved end |
#product_id ⇒ String
The id of the product (e.g. "app:com.google.android.gm") for which the
approval status has changed. This field will always be present.
Corresponds to the JSON property productId
1547 1548 1549 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1547 def product_id @product_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1554 1555 1556 1557 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1554 def update!(**args) @approved = args[:approved] if args.key?(:approved) @product_id = args[:product_id] if args.key?(:product_id) end |