pub struct BeginPageContentExportResponse {
pub href: String,
pub id: String,
pub status: String,
}
Expand description
Response when beginning an export of page content.
JSON schema
{
"description": "Response when beginning an export of page content.",
"type": "object",
"required": [
"href",
"id",
"status"
],
"properties": {
"href": {
"description": "The URL that reports the status of this export. Poll this URL to get the content URL when the export has completed.",
"examples": [
"https://coda.io/apis/v1/docs/somedoc/pages/somepage/export/some-request-id"
],
"type": "string"
},
"id": {
"description": "The identifier of this export request.",
"examples": [
"AbCDeFGH"
],
"type": "string"
},
"status": {
"description": "The status of this export.",
"examples": [
"complete"
],
"type": "string"
}
},
"additionalProperties": false,
"x-schema-name": "BeginPageContentExportResponse"
}
Fields§
§href: String
The URL that reports the status of this export. Poll this URL to get the content URL when the export has completed.
id: String
The identifier of this export request.
status: String
The status of this export.
Trait Implementations§
Source§impl Clone for BeginPageContentExportResponse
impl Clone for BeginPageContentExportResponse
Source§fn clone(&self) -> BeginPageContentExportResponse
fn clone(&self) -> BeginPageContentExportResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for BeginPageContentExportResponse
impl<'de> Deserialize<'de> for BeginPageContentExportResponse
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 From<&BeginPageContentExportResponse> for BeginPageContentExportResponse
impl From<&BeginPageContentExportResponse> for BeginPageContentExportResponse
Source§fn from(value: &BeginPageContentExportResponse) -> Self
fn from(value: &BeginPageContentExportResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BeginPageContentExportResponse
impl RefUnwindSafe for BeginPageContentExportResponse
impl Send for BeginPageContentExportResponse
impl Sync for BeginPageContentExportResponse
impl Unpin for BeginPageContentExportResponse
impl UnwindSafe for BeginPageContentExportResponse
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