49 lines
5.3 KiB
Rust
49 lines
5.3 KiB
Rust
/*
|
|
* Fur Affinity API
|
|
*
|
|
* [](https://github.com/FurryCoders/furaffinity-api) [](https://github.com/FurryCoders/furaffinity-api/actions/workflows/test.yml) [](https://pypi.org/project/faapi/3.11.6) [](/robots.json) [](/docs) [](/redoc) Use the Fur Affinity API badge for your projects! [](https://furaffinity-api.herokuapp.com/badge/svg) _The badge is provided via [Shields.io](https://shields.io/)._
|
|
*
|
|
* The version of the OpenAPI document: 1.5.5
|
|
*
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
use crate::models;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
/// SubmissionPartial : Simplified submission information
|
|
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct SubmissionPartial {
|
|
/// Submission's ID
|
|
#[serde(rename = "id")]
|
|
pub id: i32,
|
|
/// Submission's title
|
|
#[serde(rename = "title")]
|
|
pub title: String,
|
|
#[serde(rename = "author")]
|
|
pub author: Box<models::UserPartial>,
|
|
/// Submission's rating (e.g. general, mature, etc.)
|
|
#[serde(rename = "rating")]
|
|
pub rating: String,
|
|
/// Submission's type (i.e. image, text, music)
|
|
#[serde(rename = "type")]
|
|
pub r#type: String,
|
|
/// URL to submission's thumbnail
|
|
#[serde(rename = "thumbnail_url")]
|
|
pub thumbnail_url: String,
|
|
}
|
|
|
|
impl SubmissionPartial {
|
|
/// Simplified submission information
|
|
pub fn new(id: i32, title: String, author: models::UserPartial, rating: String, r#type: String, thumbnail_url: String) -> SubmissionPartial {
|
|
SubmissionPartial {
|
|
id,
|
|
title,
|
|
author: Box::new(author),
|
|
rating,
|
|
r#type,
|
|
thumbnail_url,
|
|
}
|
|
}
|
|
}
|
|
|