Struct google_identitytoolkit3::IdentitytoolkitRelyingpartyUploadAccountRequest [] [src]

pub struct IdentitytoolkitRelyingpartyUploadAccountRequest {
    pub hash_algorithm: Option<String>,
    pub delegated_project_number: Option<String>,
    pub allow_overwrite: Option<bool>,
    pub users: Option<Vec<UserInfo>>,
    pub sanity_check: Option<bool>,
    pub signer_key: Option<String>,
    pub memory_cost: Option<i32>,
    pub salt_separator: Option<String>,
    pub target_project_id: Option<String>,
    pub rounds: Option<i32>,
}

Request to upload user account in batch.

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

The password hash algorithm.

GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration.

Whether allow overwrite existing account when user local_id exists.

The account info to be stored.

If true, backend will do sanity check(including duplicate email and federated id) when uploading account.

The key for to hash the password.

Memory cost for hash calculation. Used by scrypt similar algorithms.

The salt separator.

Specify which project (field value is actually project id) to operate. Only used when provided credential.

Rounds for hash calculation. Used by scrypt and similar algorithms.

Trait Implementations

impl Debug for IdentitytoolkitRelyingpartyUploadAccountRequest
[src]

Formats the value using the given formatter.

impl Clone for IdentitytoolkitRelyingpartyUploadAccountRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for IdentitytoolkitRelyingpartyUploadAccountRequest
[src]

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

impl RequestValue for IdentitytoolkitRelyingpartyUploadAccountRequest
[src]