Files
gamenight/gamenight-api-client-rs/src/models/location_id.rs

28 lines
545 B
Rust

/*
* Gamenight
*
* Api specification for a Gamenight server
*
* The version of the OpenAPI document: 1.0
* Contact: dennis@brentj.es
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct LocationId {
#[serde(rename = "location_id")]
pub location_id: String,
}
impl LocationId {
pub fn new(location_id: String) -> LocationId {
LocationId {
location_id,
}
}
}