34 lines
4.9 KiB
Rust
34 lines
4.9 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};
|
|
|
|
/// Body : Request body with authentication fields
|
|
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct Body {
|
|
/// A list of cookies to use to authenticate the request
|
|
#[serde(rename = "cookies")]
|
|
pub cookies: Vec<models::Cookie>,
|
|
/// Set to true to return text fields in BBCode format
|
|
#[serde(rename = "bbcode", skip_serializing_if = "Option::is_none")]
|
|
pub bbcode: Option<bool>,
|
|
}
|
|
|
|
impl Body {
|
|
/// Request body with authentication fields
|
|
pub fn new(cookies: Vec<models::Cookie>) -> Body {
|
|
Body {
|
|
cookies,
|
|
bbcode: None,
|
|
}
|
|
}
|
|
}
|
|
|