pub struct DocumentView {
pub body: Option<String>,
pub category: Option<String>,
pub content_type: Option<String>,
pub created_at: Option<i32>,
pub esign_provider: Option<String>,
pub id: Option<String>,
pub signed_at: Option<i32>,
pub status: Option<String>,
pub template_id: Option<String>,
pub template_version: Option<i32>,
pub title: Option<String>,
pub updated_at: Option<i32>,
}Fields§
§body: Option<String>Body is the rendered document. It is sealed at rest and returned only to the owning org. When the template is counsel-review it opens with the counsel notice, which the engine prepends and no caller can suppress.
category: Option<String>§content_type: Option<String>ContentType is the rendered body’s media type — text/markdown.
created_at: Option<i32>§esign_provider: Option<String>§id: Option<String>§signed_at: Option<i32>§status: Option<String>§template_id: Option<String>§template_version: Option<i32>§title: Option<String>§updated_at: Option<i32>Implementations§
Source§impl DocumentView
impl DocumentView
pub fn new() -> DocumentView
Trait Implementations§
Source§impl Clone for DocumentView
impl Clone for DocumentView
Source§fn clone(&self) -> DocumentView
fn clone(&self) -> DocumentView
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 DocumentView
impl Debug for DocumentView
Source§impl Default for DocumentView
impl Default for DocumentView
Source§fn default() -> DocumentView
fn default() -> DocumentView
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DocumentView
impl<'de> Deserialize<'de> for DocumentView
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
Source§impl PartialEq for DocumentView
impl PartialEq for DocumentView
Source§impl Serialize for DocumentView
impl Serialize for DocumentView
impl StructuralPartialEq for DocumentView
Auto Trait Implementations§
impl Freeze for DocumentView
impl RefUnwindSafe for DocumentView
impl Send for DocumentView
impl Sync for DocumentView
impl Unpin for DocumentView
impl UnsafeUnpin for DocumentView
impl UnwindSafe for DocumentView
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