pub struct GenerateEnterpriseUpgradeUrlRequest {
pub admin_email: Option<String>,
pub allowed_domains: Option<Vec<String>>,
}Expand description
Request message for generating a URL to upgrade an existing managed Google Play Accounts enterprise to a managed Google domain.Note: This feature is not generally available.
§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§
§admin_email: Option<String>Optional. Email address used to prefill the admin field of the enterprise signup form as part of the upgrade process. This value is a hint only and can be altered by the user. Personal email addresses are not allowed. If allowedDomains is non-empty then this must belong to one of the allowedDomains.
allowed_domains: Option<Vec<String>>Optional. A list of domains that are permitted for the admin email. The IT admin cannot enter an email address with a domain name that is not in this list. Subdomains of domains in this list are not allowed but can be allowed by adding a second entry which has *. prefixed to the domain name (e.g. *.example.com). If the field is not present or is an empty list then the IT admin is free to use any valid domain name. Personal email domains are not allowed.
Trait Implementations§
Source§impl Clone for GenerateEnterpriseUpgradeUrlRequest
impl Clone for GenerateEnterpriseUpgradeUrlRequest
Source§fn clone(&self) -> GenerateEnterpriseUpgradeUrlRequest
fn clone(&self) -> GenerateEnterpriseUpgradeUrlRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more