pub struct E911ProvisionManuallyParams {
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
- Subscribes your DID to the e911 Emergency Services. - All e911 information will be validated by the VoIP.ms staff.
Parameters for Client::e911_provision_manually (wire method e911ProvisionManually).
Fields§
§did: Option<String>DID that will be sent to the e911 service. (required)
full_name: Option<String>Full Name that will be sent to the e911 service. (required)
street_number: Option<i64>Street Number that will be sent to the e911 service. (required)
street_name: Option<String>Street Name that will be sent to the e911 service. (required)
address_type: Option<String>Address Type that will be sent to the e911 service (Values from e911AddressTypes).
address_number: Option<i64>Address Number that will be sent to the e911 service.
city: Option<String>City that will be sent to the e911 service. (required)
state: Option<String>State / Province that will be sent to the e911 service. (required)
country: Option<String>Country that will be sent to the e911 service. Value can be US (United states) or CA (Canada). (required)
zip: Option<String>§language: Option<String>Language that will be sent to the e911 service. Only available for addresses from Canada. Value can be EN (English) or FR (French). (required)
other_info: Option<String>Additional Address Information that will be sent to the e911 service. Only available for addresses from Canada.
Trait Implementations§
Source§impl Clone for E911ProvisionManuallyParams
impl Clone for E911ProvisionManuallyParams
Source§fn clone(&self) -> E911ProvisionManuallyParams
fn clone(&self) -> E911ProvisionManuallyParams
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more