Struct google_androidenterprise1::ProductApprovalEvent[][src]

pub struct ProductApprovalEvent {
    pub approved: Option<String>,
    pub product_id: Option<String>,
}

An event generated when a product's approval status is changed.

This type is not used in any activity, and only used as part of another schema.

Fields

Whether the product was approved or unapproved. This field will always be present.

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.

Trait Implementations

impl Default for ProductApprovalEvent
[src]

Returns the "default value" for a type. Read more

impl Clone for ProductApprovalEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ProductApprovalEvent
[src]

Formats the value using the given formatter. Read more

impl Part for ProductApprovalEvent
[src]

Auto Trait Implementations