Regen APIs after removal of breaking special case for Rust types

I can just hope it's breaking everywhere and was never working, as
opposed to a special bugfix for just a single API at the time.
This commit is contained in:
Sebastian Thiel
2019-07-05 12:20:02 +08:00
parent 24b5faa417
commit 7335a1939f
33 changed files with 82 additions and 82 deletions

View File

@@ -727,10 +727,10 @@ pub struct ExportStats {
pub size_in_bytes: Option<String>,
/// The number of documents already processed by the export.
#[serde(rename="exportedArtifactCount")]
pub exported_artifact_count: Option<i64>,
pub exported_artifact_count: Option<String>,
/// The number of documents to be exported.
#[serde(rename="totalArtifactCount")]
pub total_artifact_count: Option<i64>,
pub total_artifact_count: Option<String>,
}
impl Part for ExportStats {}