Struct google_androidenterprise1::ProductsApproveRequest[][src]

pub struct ProductsApproveRequest {
    pub approved_permissions: Option<String>,
    pub approval_url_info: Option<ApprovalUrlInfo>,
}

There is no detailed description.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Sets how new permission requests for the product are handled. "allPermissions" automatically approves all current and future permissions for the product. "currentPermissionsOnly" approves the current set of permissions for the product, but any future permissions added through updates will require manual reapproval. If not specified, only the current set of permissions will be approved.

The approval URL that was shown to the user. Only the permissions shown to the user with that URL will be accepted, which may not be the product's entire set of permissions. For example, the URL may only display new permissions from an update after the product was approved, or not include new permissions if the product was updated since the URL was generated.

Trait Implementations

impl Default for ProductsApproveRequest
[src]

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

impl Clone for ProductsApproveRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ProductsApproveRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ProductsApproveRequest
[src]

Auto Trait Implementations