pub struct AgentSignupResult {
pub organization_id: String,
pub inbox_id: String,
pub api_key: String,
}Expand description
The response to [Client::agent_sign_up]: the new organization, inbox, and
its API key.
Fields§
§organization_id: StringThe new organization id.
inbox_id: StringThe new inbox id.
api_key: StringThe new inbox’s API key.
Trait Implementations§
Source§impl Clone for AgentSignupResult
impl Clone for AgentSignupResult
Source§fn clone(&self) -> AgentSignupResult
fn clone(&self) -> AgentSignupResult
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 AgentSignupResult
impl Debug for AgentSignupResult
Source§impl<'de> Deserialize<'de> for AgentSignupResult
impl<'de> Deserialize<'de> for AgentSignupResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AgentSignupResult
impl RefUnwindSafe for AgentSignupResult
impl Send for AgentSignupResult
impl Sync for AgentSignupResult
impl Unpin for AgentSignupResult
impl UnsafeUnpin for AgentSignupResult
impl UnwindSafe for AgentSignupResult
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