voiceit2 0.4.1

A Rust wrapper for VoiceIt's API 2.0 featuring Voice + Face Verification and Identification.
Documentation
#![allow(non_snake_case)]

use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug)]
pub struct CreateSubAccountReturn {
    pub message: String,
    pub status: u16,
    pub timeTaken: String,
    pub password: String,
    pub apiToken: String,
    pub apiKey: String,
    pub email: String,
    pub responseCode: String,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct RegenerateSubAccountAPITokenReturn {
    pub message: String,
    pub status: u16,
    pub timeTaken: String,
    pub apiToken: String,
    pub responseCode: String,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct DeleteSubAccountReturn {
    pub message: String,
    pub status: u16,
    pub timeTaken: String,
    pub responseCode: String,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct SwitchSubAccountTypeReturn {
    pub message: String,
    pub status: u16,
    pub timeTaken: String,
    pub responseCode: String,
}