roboat 0.39.0

A high performance interface for the Roblox API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use serde::{Deserialize, Serialize};

use crate::catalog::{AssetType, CreatorType};

#[derive(Serialize, Deserialize, Clone, PartialEq, Debug)]
pub struct CreatorInformation {
    pub id: u64,
    #[serde(rename = "type")]
    pub creator_type: CreatorType,
}

#[derive(Serialize, Deserialize, Clone, PartialEq, Debug)]
pub struct RootPlaceInformation {
    pub id: u64,
    #[serde(rename = "type")]
    pub root_place_type: AssetType,
}