34 lines
4.8 KiB
Rust
34 lines
4.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};
|
|
|
|
/// Cookie : Container for the cookies used to connect to Fur Affinity
|
|
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct Cookie {
|
|
/// The name of the cookie (a, b, etc.)
|
|
#[serde(rename = "name")]
|
|
pub name: String,
|
|
/// The value of the cookie (e.g. 5dabd975-436f-4af7-b949-f5d0f1e803a0)
|
|
#[serde(rename = "value")]
|
|
pub value: String,
|
|
}
|
|
|
|
impl Cookie {
|
|
/// Container for the cookies used to connect to Fur Affinity
|
|
pub fn new(name: String, value: String) -> Cookie {
|
|
Cookie {
|
|
name,
|
|
value,
|
|
}
|
|
}
|
|
}
|
|
|