Skip to main content

asana/model/
remove_custom_field_setting_for_project_response.rs

1use serde::{Serialize, Deserialize};
2use super::EmptyResponse;
3#[derive(Debug, Clone, Serialize, Deserialize, Default)]
4pub struct RemoveCustomFieldSettingForProjectResponse {
5    ///An empty object. Some endpoints do not return an object on success. The success is conveyed through a 2-- status code and returning an empty object.
6    pub data: EmptyResponse,
7}
8impl std::fmt::Display for RemoveCustomFieldSettingForProjectResponse {
9    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
10        write!(f, "{}", serde_json::to_string(self).unwrap())
11    }
12}