pub struct GetDIDsInfoParams {
pub client: Option<String>,
pub did: Option<String>,
}Expand description
- Retrieves information from all your DIDs if no additional parameter is provided. - Retrieves information from Reseller Client’s DIDs if a Reseller Client ID is provided. - Retrieves information from Sub Account’s DIDs if a Sub Accunt is provided. - Retrieves information from a specific DID if a DID Number is provided. - Retrieves SMS information from a specific DID if the SMS is available.
Parameters for Client::get_dids_info (wire method getDIDsInfo).
Fields§
§client: Option<String>Parameter could have the following values: * Empty Value [Not Required] * Specific Reseller Client ID (Example: 561115) * Specific Sub Account (Example: ‘100001_VoIP’)
did: Option<String>DID from Client or Sub Account (Example: 5551234567)
Trait Implementations§
Source§impl Clone for GetDIDsInfoParams
impl Clone for GetDIDsInfoParams
Source§fn clone(&self) -> GetDIDsInfoParams
fn clone(&self) -> GetDIDsInfoParams
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 GetDIDsInfoParams
impl Debug for GetDIDsInfoParams
Source§impl Default for GetDIDsInfoParams
impl Default for GetDIDsInfoParams
Source§fn default() -> GetDIDsInfoParams
fn default() -> GetDIDsInfoParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetDIDsInfoParams
impl RefUnwindSafe for GetDIDsInfoParams
impl Send for GetDIDsInfoParams
impl Sync for GetDIDsInfoParams
impl Unpin for GetDIDsInfoParams
impl UnsafeUnpin for GetDIDsInfoParams
impl UnwindSafe for GetDIDsInfoParams
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