Class: Google::Apis::AndroidenterpriseV1::ProductApprovalEvent
- Inherits:
-
Object
- Object
- Google::Apis::AndroidenterpriseV1::ProductApprovalEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidenterprise_v1/classes.rb,
lib/google/apis/androidenterprise_v1/representations.rb,
lib/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.
Constructor Details
#initialize(**args) ⇒ ProductApprovalEvent
Returns a new instance of ProductApprovalEvent.
2168 2169 2170 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 2168 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
2160 2161 2162 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 2160 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
2166 2167 2168 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 2166 def product_id @product_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2173 2174 2175 2176 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 2173 def update!(**args) @approved = args[:approved] if args.key?(:approved) @product_id = args[:product_id] if args.key?(:product_id) end |