1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* Pipedrive API v1
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
*/
/// FieldsResponse200AllOfAdditionalData : The additional data of the list
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct FieldsResponse200AllOfAdditionalData {
/// Pagination start
#[serde(rename = "start", skip_serializing_if = "Option::is_none")]
pub start: Option<i32>,
/// Items shown per page
#[serde(rename = "limit", skip_serializing_if = "Option::is_none")]
pub limit: Option<i32>,
/// If there are more list items in the collection than displayed or not
#[serde(rename = "more_items_in_collection", skip_serializing_if = "Option::is_none")]
pub more_items_in_collection: Option<bool>,
}
impl FieldsResponse200AllOfAdditionalData {
/// The additional data of the list
pub fn new() -> FieldsResponse200AllOfAdditionalData {
FieldsResponse200AllOfAdditionalData {
start: None,
limit: None,
more_items_in_collection: None,
}
}
}