64 lines
5.8 KiB
Rust
64 lines
5.8 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};
|
|
|
|
/// Journal : Journal information as it appears in the journal's page
|
|
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct Journal {
|
|
/// Journal's ID
|
|
#[serde(rename = "id")]
|
|
pub id: i32,
|
|
/// Journal's title
|
|
#[serde(rename = "title")]
|
|
pub title: String,
|
|
#[serde(rename = "author")]
|
|
pub author: Box<models::UserPartial>,
|
|
#[serde(rename = "stats")]
|
|
pub stats: Box<models::JournalStats>,
|
|
/// Journal's upload date
|
|
#[serde(rename = "date")]
|
|
pub date: String,
|
|
/// Journal's header
|
|
#[serde(rename = "header")]
|
|
pub header: String,
|
|
/// Journal's footer
|
|
#[serde(rename = "footer")]
|
|
pub footer: String,
|
|
/// Journal's content
|
|
#[serde(rename = "content")]
|
|
pub content: String,
|
|
/// Journal's mentions (users mentioned with FA links in the content)
|
|
#[serde(rename = "mentions")]
|
|
pub mentions: Vec<String>,
|
|
/// Journal's comments
|
|
#[serde(rename = "comments")]
|
|
pub comments: Vec<models::Comment>,
|
|
}
|
|
|
|
impl Journal {
|
|
/// Journal information as it appears in the journal's page
|
|
pub fn new(id: i32, title: String, author: models::UserPartial, stats: models::JournalStats, date: String, header: String, footer: String, content: String, mentions: Vec<String>, comments: Vec<models::Comment>) -> Journal {
|
|
Journal {
|
|
id,
|
|
title,
|
|
author: Box::new(author),
|
|
stats: Box::new(stats),
|
|
date,
|
|
header,
|
|
footer,
|
|
content,
|
|
mentions,
|
|
comments,
|
|
}
|
|
}
|
|
}
|
|
|