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
1854 1855 1856 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1854 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
1846 1847 1848 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1846 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
1852 1853 1854 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1852 def product_id @product_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1859 1860 1861 1862 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1859 def update!(**args) @approved = args[:approved] if args.key?(:approved) @product_id = args[:product_id] if args.key?(:product_id) end |