pub struct E911ValidateParams {
pub did: Option<String>,
pub full_name: Option<String>,
pub street_number: Option<i64>,
pub street_name: Option<String>,
pub address_type: Option<String>,
pub address_number: Option<i64>,
pub city: Option<String>,
pub state: Option<String>,
pub country: Option<String>,
pub zip: Option<String>,
pub language: Option<String>,
pub other_info: Option<String>,
}Expand description
- Validates your e911 information in order to start your e911 Emergency Services Subscription.
Parameters for Client::e911_validate (wire method e911Validate).
Fields§
§did: Option<String>DID with e911 enabled / in process. (required)
full_name: Option<String>Full Name that will be validated. (required)
street_number: Option<i64>Street Number that will be validated. (required)
street_name: Option<String>Street Name that will be validated. (required)
address_type: Option<String>Address Type that will be validated (Values from e911AddressTypes).
address_number: Option<i64>Address Number that will be validated.
city: Option<String>City that will be validated. (required)
state: Option<String>State / Province that will be validated. (required)
country: Option<String>Country that will be validated. Value can be US (United states) or CA (Canada). (required)
zip: Option<String>§language: Option<String>Language that will be validated. Only available for addresses from Canada. Value can be EN (English) or FR (French).
other_info: Option<String>Additional Address Information that will be validated. Only available for addresses from Canada.
Trait Implementations§
Source§impl Clone for E911ValidateParams
impl Clone for E911ValidateParams
Source§fn clone(&self) -> E911ValidateParams
fn clone(&self) -> E911ValidateParams
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more