pub struct OrganizationExportCompact {
pub asana_resource: AsanaResource,
pub created_at: Option<DateTime<Utc>>,
pub download_url: Option<String>,
pub organization: Option<WorkspaceCompact>,
pub state: Option<String>,
}Fields§
§asana_resource: AsanaResourceA generic Asana Resource, containing a globally unique identifier.
created_at: Option<DateTime<Utc>>The time at which this resource was created.
download_url: Option<String>Download this URL to retreive the full export of the organization in JSON format. It will be compressed in a gzip (.gz) container.
Note: May be null if the export is still in progress or failed. If present, this URL may only be valid for 1 hour from the time of retrieval. You should avoid persisting this URL somewhere and rather refresh on demand to ensure you do not keep stale URLs.
organization: Option<WorkspaceCompact>§state: Option<String>The current state of the export.
Trait Implementations§
Source§impl Clone for OrganizationExportCompact
impl Clone for OrganizationExportCompact
Source§fn clone(&self) -> OrganizationExportCompact
fn clone(&self) -> OrganizationExportCompact
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 OrganizationExportCompact
impl Debug for OrganizationExportCompact
Source§impl Default for OrganizationExportCompact
impl Default for OrganizationExportCompact
Source§fn default() -> OrganizationExportCompact
fn default() -> OrganizationExportCompact
Returns the “default value” for a type. Read more
Source§impl Deref for OrganizationExportCompact
impl Deref for OrganizationExportCompact
Source§impl DerefMut for OrganizationExportCompact
impl DerefMut for OrganizationExportCompact
Source§impl<'de> Deserialize<'de> for OrganizationExportCompact
impl<'de> Deserialize<'de> for OrganizationExportCompact
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 Display for OrganizationExportCompact
impl Display for OrganizationExportCompact
Auto Trait Implementations§
impl Freeze for OrganizationExportCompact
impl RefUnwindSafe for OrganizationExportCompact
impl Send for OrganizationExportCompact
impl Sync for OrganizationExportCompact
impl Unpin for OrganizationExportCompact
impl UnsafeUnpin for OrganizationExportCompact
impl UnwindSafe for OrganizationExportCompact
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