pub struct PostCollectionsCollectionIdRequestsResponseData {
pub collection: Option<String>,
pub created_at: Option<String>,
pub folder: Option<String>,
pub id: Option<String>,
pub last_updated_by: Option<String>,
pub name: Option<String>,
pub owner: Option<String>,
pub responses: Option<Vec<String>>,
pub responses_order: Option<Vec<String>>,
pub updated_at: Option<String>,
}
Fields§
§collection: Option<String>
The collection ID that the request belongs to.
created_at: Option<String>
The requeset’s creation date and time.
folder: Option<String>
Information about the request’s parent folder.
id: Option<String>
The request’s ID.
last_updated_by: Option<String>
The user ID of the user that last updated the folder.
name: Option<String>
The request’s name.
owner: Option<String>
The user ID of the request’s owner.
responses: Option<Vec<String>>
A list of the request’s responses.
responses_order: Option<Vec<String>>
A list of response IDs and their order in the folder.
updated_at: Option<String>
The date and time at which the request was last updated.
Trait Implementations§
Source§impl Clone for PostCollectionsCollectionIdRequestsResponseData
impl Clone for PostCollectionsCollectionIdRequestsResponseData
Source§fn clone(&self) -> PostCollectionsCollectionIdRequestsResponseData
fn clone(&self) -> PostCollectionsCollectionIdRequestsResponseData
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 PostCollectionsCollectionIdRequestsResponseData
impl<'de> Deserialize<'de> for PostCollectionsCollectionIdRequestsResponseData
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 PostCollectionsCollectionIdRequestsResponseData
impl PartialEq for PostCollectionsCollectionIdRequestsResponseData
Source§fn eq(&self, other: &PostCollectionsCollectionIdRequestsResponseData) -> bool
fn eq(&self, other: &PostCollectionsCollectionIdRequestsResponseData) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PostCollectionsCollectionIdRequestsResponseData
Auto Trait Implementations§
impl Freeze for PostCollectionsCollectionIdRequestsResponseData
impl RefUnwindSafe for PostCollectionsCollectionIdRequestsResponseData
impl Send for PostCollectionsCollectionIdRequestsResponseData
impl Sync for PostCollectionsCollectionIdRequestsResponseData
impl Unpin for PostCollectionsCollectionIdRequestsResponseData
impl UnwindSafe for PostCollectionsCollectionIdRequestsResponseData
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