pub struct SendEnvelopeRequest {
pub msg_type: String,
pub recipient: Option<String>,
pub conversation_id: String,
pub payload_b64: String,
}Expand description
Request body for POST /envelopes/send.
Fields§
§msg_type: String§recipient: Option<String>§conversation_id: String§payload_b64: StringTrait Implementations§
Source§impl Debug for SendEnvelopeRequest
impl Debug for SendEnvelopeRequest
Auto Trait Implementations§
impl Freeze for SendEnvelopeRequest
impl RefUnwindSafe for SendEnvelopeRequest
impl Send for SendEnvelopeRequest
impl Sync for SendEnvelopeRequest
impl Unpin for SendEnvelopeRequest
impl UnsafeUnpin for SendEnvelopeRequest
impl UnwindSafe for SendEnvelopeRequest
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