pub struct OobConnectionCreateInvitationResponse {
pub invitation_message_id: String,
pub invitation: Value,
pub oob_id: Option<String>,
pub invitation_url: String,
pub alias: Option<String>,
}Expand description
Response from the cloudagent when an invitation is created
Fields§
§invitation_message_id: Stringthe invitation message id generated by the cloudagent this will be used for further functionality
invitation: ValueInvitation object which contains some metadata about the invitation
oob_id: Option<String>The OOB id that can be used to identify the OOb connection/invite
invitation_url: StringURL that can be parsed by another agent to accept the invitation
alias: Option<String>Optional alias if it was supplied when creating the invitation
Trait Implementations§
Source§impl Default for OobConnectionCreateInvitationResponse
impl Default for OobConnectionCreateInvitationResponse
Source§fn default() -> OobConnectionCreateInvitationResponse
fn default() -> OobConnectionCreateInvitationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OobConnectionCreateInvitationResponse
impl<'de> Deserialize<'de> for OobConnectionCreateInvitationResponse
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 OobConnectionCreateInvitationResponse
impl RefUnwindSafe for OobConnectionCreateInvitationResponse
impl Send for OobConnectionCreateInvitationResponse
impl Sync for OobConnectionCreateInvitationResponse
impl Unpin for OobConnectionCreateInvitationResponse
impl UnwindSafe for OobConnectionCreateInvitationResponse
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