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
2051 2052 2053 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2051 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
2043 2044 2045 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2043 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
2049 2050 2051 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2049 def product_id @product_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2056 2057 2058 2059 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2056 def update!(**args) @approved = args[:approved] if args.key?(:approved) @product_id = args[:product_id] if args.key?(:product_id) end |