diff options
Diffstat (limited to 'rust/fatcat-api-spec')
| -rw-r--r-- | rust/fatcat-api-spec/README.md | 2 | ||||
| -rw-r--r-- | rust/fatcat-api-spec/api.yaml | 2 | ||||
| -rw-r--r-- | rust/fatcat-api-spec/api/swagger.yaml | 4 | ||||
| -rw-r--r-- | rust/fatcat-api-spec/src/models.rs | 6 | 
4 files changed, 7 insertions, 7 deletions
| diff --git a/rust/fatcat-api-spec/README.md b/rust/fatcat-api-spec/README.md index 0e78b5ef..4a23371e 100644 --- a/rust/fatcat-api-spec/README.md +++ b/rust/fatcat-api-spec/README.md @@ -13,7 +13,7 @@ To see how to make this your own, look here:  [README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)  - API version: 0.2.0 -- Build date: 2019-05-10T06:21:30.192Z +- Build date: 2019-05-10T18:47:50.409Z  This autogenerated project defines an API crate `fatcat` which contains:  * An `Api` trait defining the API in Rust. diff --git a/rust/fatcat-api-spec/api.yaml b/rust/fatcat-api-spec/api.yaml index 9f4de5a5..389ba24e 100644 --- a/rust/fatcat-api-spec/api.yaml +++ b/rust/fatcat-api-spec/api.yaml @@ -367,7 +367,7 @@ definitions:          type: integer          example: 2014          format: int64 -      withdrawn_state: +      withdrawn_status:          type: string        withdrawn_date:          type: string diff --git a/rust/fatcat-api-spec/api/swagger.yaml b/rust/fatcat-api-spec/api/swagger.yaml index 8e6514eb..a3fb7053 100644 --- a/rust/fatcat-api-spec/api/swagger.yaml +++ b/rust/fatcat-api-spec/api/swagger.yaml @@ -7877,7 +7877,7 @@ definitions:        withdrawn_date:          type: "string"          format: "date" -      withdrawn_state: +      withdrawn_status:          type: "string"        release_year:          type: "integer" @@ -8042,9 +8042,9 @@ definitions:          timestamp: "2000-01-23T04:56:07.000+00:00"          revision: "86daea5b-1b6b-432a-bb67-ea97795f80fe"        ident: "q3nouwy3nnbsvo3h5klxsx4a7y" +      withdrawn_status: "withdrawn_status"        language: "language"        title: "title" -      withdrawn_state: "withdrawn_state"        contribs:        - raw_affiliation: "raw_affiliation"          creator: diff --git a/rust/fatcat-api-spec/src/models.rs b/rust/fatcat-api-spec/src/models.rs index f4ac0e3e..bf989b84 100644 --- a/rust/fatcat-api-spec/src/models.rs +++ b/rust/fatcat-api-spec/src/models.rs @@ -840,9 +840,9 @@ pub struct ReleaseEntity {      #[serde(skip_serializing_if = "Option::is_none")]      pub withdrawn_date: Option<chrono::NaiveDate>, -    #[serde(rename = "withdrawn_state")] +    #[serde(rename = "withdrawn_status")]      #[serde(skip_serializing_if = "Option::is_none")] -    pub withdrawn_state: Option<String>, +    pub withdrawn_status: Option<String>,      #[serde(rename = "release_year")]      #[serde(skip_serializing_if = "Option::is_none")] @@ -958,7 +958,7 @@ impl ReleaseEntity {              doi: None,              withdrawn_year: None,              withdrawn_date: None, -            withdrawn_state: None, +            withdrawn_status: None,              release_year: None,              release_date: None,              release_stage: None, | 
