pub struct SetFAXNumberEmailParams {
pub did: Option<i64>,
pub email: Option<String>,
pub email_enable: Option<bool>,
pub email_attach_file: Option<bool>,
pub test: bool,
}Expand description
- Updates the email configuration from a specific Fax Number.
Parameters for Client::set_fax_number_email (wire method setFaxNumberEmail).
Fields§
§did: Option<i64>DID Number to be ported into our network (Example: 5552341234) (required)
email: Option<String>Email address where send notifications when receive Fax Messages - (Example: [email protected])
email_enable: Option<bool>Flag to enable the email notifications. - (Values: 1 = true, 0 = false) - Default: 0
email_attach_file: Option<bool>Flag to enable attach the Fax Message as a PDF file in the notifications. - (Values: 1 = true, 0 = false) - Default: 0
test: boolSet to true if testing how to set the email of a Fax Number
Trait Implementations§
Source§impl Clone for SetFAXNumberEmailParams
impl Clone for SetFAXNumberEmailParams
Source§fn clone(&self) -> SetFAXNumberEmailParams
fn clone(&self) -> SetFAXNumberEmailParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SetFAXNumberEmailParams
impl Debug for SetFAXNumberEmailParams
Source§impl Default for SetFAXNumberEmailParams
impl Default for SetFAXNumberEmailParams
Source§fn default() -> SetFAXNumberEmailParams
fn default() -> SetFAXNumberEmailParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SetFAXNumberEmailParams
impl RefUnwindSafe for SetFAXNumberEmailParams
impl Send for SetFAXNumberEmailParams
impl Sync for SetFAXNumberEmailParams
impl Unpin for SetFAXNumberEmailParams
impl UnsafeUnpin for SetFAXNumberEmailParams
impl UnwindSafe for SetFAXNumberEmailParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more