pub struct NewAccountVirtualRequest {Show 26 fields
pub affiliate_token: Option<String>,
pub client_password: Option<String>,
pub date_first_contact: Option<String>,
pub email: Option<String>,
pub email_consent: Option<String>,
pub gclid_url: Option<String>,
pub loginid: Option<String>,
pub new_account_virtual: Value,
pub passthrough: Option<Value>,
pub req_id: Option<i64>,
pub residence: Option<String>,
pub signup_device: Option<SignupDevice>,
pub type_: Option<Type>,
pub utm_ad_id: Option<Value>,
pub utm_adgroup_id: Option<Value>,
pub utm_adrollclk_id: Option<Value>,
pub utm_campaign: Option<Value>,
pub utm_campaign_id: Option<Value>,
pub utm_content: Option<Value>,
pub utm_fbcl_id: Option<Value>,
pub utm_gl_client_id: Option<Value>,
pub utm_medium: Option<Value>,
pub utm_msclk_id: Option<Value>,
pub utm_source: Option<Value>,
pub utm_term: Option<Value>,
pub verification_code: Option<String>,
}
Expand description
Create a new virtual-money account.
Fields§
§affiliate_token: Option<String>
[Optional] Affiliate token, within 100 characters.\n
client_password: Option<String>
Password (Accepts any printable ASCII character. Must be within 8-25 characters, and include numbers, lowercase and uppercase letters. Must not be the same as the user’s email address).\n
date_first_contact: Option<String>
[Optional] Date of first contact, format: yyyy-mm-dd
in GMT timezone.\n
email: Option<String>
[Optional] Email address for signup.\n
email_consent: Option<String>
[Optional] Boolean value: 1 or 0, indicating whether the client has given consent for marketing emails.\n
gclid_url: Option<String>
[Optional] Google Click Identifier to track source.\n
loginid: Option<String>
[Optional] The login id of the user. Mandatory when multiple tokens were provided during authorize.\n
new_account_virtual: Value
Field ‘new_account_virtual’ mapped to Value due to complexity/potential issues.\n
passthrough: Option<Value>
[Optional] Used to pass data through the websocket, which may be retrieved via the echo_req
output field.\n
req_id: Option<i64>
[Optional] Used to map request to response.\n
residence: Option<String>
2-letter country code (obtained from residence_list
call).\n
signup_device: Option<SignupDevice>
[Optional] Show whether user has used mobile or desktop.\n
type_: Option<Type>
Account type\n
utm_ad_id: Option<Value>
[Optional] Identifier of particular ad. Value must match Regex pattern to be recorded\n
utm_adgroup_id: Option<Value>
[Optional] Identifier of ad group in the campaign. Value must match Regex pattern to be recorded\n
utm_adrollclk_id: Option<Value>
[Optional] Unique identifier of click on AdRoll ads platform. Value must match Regex pattern to be recorded\n
utm_campaign: Option<Value>
[Optional] Identifies a specific product promotion or strategic campaign such as a spring sale or other promotions. Value must match Regex pattern to be recorded\n
utm_campaign_id: Option<Value>
[Optional] Identifier of paid ad campaign. Value must match Regex pattern to be recorded\n
utm_content: Option<Value>
[Optional] Used to differentiate similar content, or links within the same ad. Value must match Regex pattern to be recorded\n
utm_fbcl_id: Option<Value>
[Optional] Unique identifier of click on Facebook ads platform. Value must match Regex pattern to be recorded\n
utm_gl_client_id: Option<Value>
[Optional] Unique visitor identifier on Google Ads platform. Value must match Regex pattern to be recorded\n
utm_medium: Option<Value>
[Optional] Identifies the medium the link was used upon such as: email, CPC, or other methods of sharing. Value must match Regex pattern to be recorded\n
utm_msclk_id: Option<Value>
[Optional] Unique click identifier on Microsoft Bing ads platform. Value must match Regex pattern to be recorded\n
utm_source: Option<Value>
[Optional] Identifies the source of traffic such as: search engine, newsletter, or other referral. Value must match Regex pattern to be recorded\n
utm_term: Option<Value>
[Optional] Used to send information related to the campaign term like paid search keywords. Value must match Regex pattern to be recorded\n
verification_code: Option<String>
Email verification code (received from a verify_email
call, which must be done first).\n
Trait Implementations§
Source§impl Clone for NewAccountVirtualRequest
impl Clone for NewAccountVirtualRequest
Source§fn clone(&self) -> NewAccountVirtualRequest
fn clone(&self) -> NewAccountVirtualRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more