pub struct User {
pub access_state: Option<String>,
pub developer_account_permissions: Option<Vec<String>>,
pub email: Option<String>,
pub expiration_time: Option<DateTime<Utc>>,
pub grants: Option<Vec<Grant>>,
pub name: Option<String>,
pub partial: Option<bool>,
}Expand description
A user resource.
§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).
- create users (request|response)
- delete users (none)
- list users (none)
- patch users (request|response)
Fields§
§access_state: Option<String>Output only. The state of the user’s access to the Play Console.
developer_account_permissions: Option<Vec<String>>Permissions for the user which apply across the developer account.
email: Option<String>Immutable. The user’s email address.
expiration_time: Option<DateTime<Utc>>The time at which the user’s access expires, if set. When setting this value, it must always be in the future.
grants: Option<Vec<Grant>>Output only. Per-app permissions for the user.
name: Option<String>Required. Resource name for this user, following the pattern “developers/{developer}/users/{email}”.
partial: Option<bool>Output only. Whether there are more permissions for the user that are not represented here. This can happen if the caller does not have permission to manage all apps in the account. This is also true if this user is the account owner. If this field is true, it should be taken as a signal that this user cannot be fully managed via the API. That is, the API caller is not be able to manage all of the permissions this user holds, either because it doesn’t know about them or because the user is the account owner.