clox_models 0.1.0

Rust models generated from avsc files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Generated from ../../avro/Genre.avsc
use juniper;

#[derive(juniper::GraphQLObject)]
pub struct Genre {
    pub id: String,
    pub name: Option<String>,
    pub shortname: Option<String>,
    pub logo: Option<String>,
    pub image: Option<String>,
    pub created_at: Option<i32>,
    pub updated_at: Option<i32>,
    pub created_at_utc: Option<i32>,
    pub updated_at_utc: Option<i32>,
}