/*
* Asana
*
* This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/developer-docs/master/defs/asana_oas.yaml).
*
* The version of the OpenAPI document: 1.0
*
* Generated by: https://openapi-generator.tech
*/
/// OrganizationExportRequest : An *organization_export* request starts a job to export the complete data of the given Organization.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct OrganizationExportRequest {
/// Globally unique identifier for the workspace or organization.
#[serde(rename = "organization", skip_serializing_if = "Option::is_none")]
pub organization: Option<String>,
}
impl OrganizationExportRequest {
/// An *organization_export* request starts a job to export the complete data of the given Organization.
pub fn new() -> OrganizationExportRequest {
OrganizationExportRequest { organization: None }
}
}