pub struct CustomDocDomainList {
pub custom_doc_domains: Vec<CustomDocDomain>,
pub next_page_link: Option<NextPageLink>,
pub next_page_token: Option<NextPageToken>,
}
Expand description
List of all custom domains added to a published doc.
JSON schema
{
"description": "List of all custom domains added to a published doc.",
"type": "object",
"required": [
"customDocDomains"
],
"properties": {
"customDocDomains": {
"description": "Custom domains for the published doc.",
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomDocDomain"
}
},
"nextPageLink": {
"allOf": [
{
"$ref": "#/components/schemas/nextPageLink"
},
{
"examples": [
"https://coda.io/apis/v1/docs/AbCDeFGH/domains?pageToken=eyJsaW1pd"
],
"type": "string"
}
]
},
"nextPageToken": {
"$ref": "#/components/schemas/nextPageToken"
}
},
"additionalProperties": false,
"x-schema-name": "CustomDocDomainList"
}
Fields§
§custom_doc_domains: Vec<CustomDocDomain>
Custom domains for the published doc.
next_page_link: Option<NextPageLink>
§next_page_token: Option<NextPageToken>
Trait Implementations§
Source§impl Clone for CustomDocDomainList
impl Clone for CustomDocDomainList
Source§fn clone(&self) -> CustomDocDomainList
fn clone(&self) -> CustomDocDomainList
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 Debug for CustomDocDomainList
impl Debug for CustomDocDomainList
Source§impl<'de> Deserialize<'de> for CustomDocDomainList
impl<'de> Deserialize<'de> for CustomDocDomainList
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<&CustomDocDomainList> for CustomDocDomainList
impl From<&CustomDocDomainList> for CustomDocDomainList
Source§fn from(value: &CustomDocDomainList) -> Self
fn from(value: &CustomDocDomainList) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CustomDocDomainList
impl RefUnwindSafe for CustomDocDomainList
impl Send for CustomDocDomainList
impl Sync for CustomDocDomainList
impl Unpin for CustomDocDomainList
impl UnwindSafe for CustomDocDomainList
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