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
/*
* Zernio API
*
* API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
*
* The version of the OpenAPI document: 1.0.4
* Contact: support@zernio.com
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct BulkUploadResultResultsInner {
/// 1-based index of the CSV data row (header excluded)
#[serde(rename = "rowIndex", skip_serializing_if = "Option::is_none")]
pub row_index: Option<i32>,
/// Whether the row was created successfully
#[serde(rename = "ok", skip_serializing_if = "Option::is_none")]
pub ok: Option<bool>,
/// ID of the created post. Present only when `ok` is true and not a dry run.
#[serde(rename = "createdPostId", skip_serializing_if = "Option::is_none")]
pub created_post_id: Option<String>,
/// Machine-readable failure codes for this row. Present only when `ok` is false. Examples: `unknown_profile:<id>`, `no_account_for_platform:<platform>`, `schedule_time_missing`, `rate_limited:<platform>:@<username>:<remaining>`.
#[serde(rename = "errors", skip_serializing_if = "Option::is_none")]
pub errors: Option<Vec<String>>,
}
impl BulkUploadResultResultsInner {
pub fn new() -> BulkUploadResultResultsInner {
BulkUploadResultResultsInner {
row_index: None,
ok: None,
created_post_id: None,
errors: None,
}
}
}