vrchatapi 1.20.8-nightly.11

VRChat API Client for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ProductPurchasePurchaseContext {
    #[serde(rename = "locationType", skip_serializing_if = "Option::is_none")]
    pub location_type: Option<String>,
}

impl ProductPurchasePurchaseContext {
    pub fn new() -> ProductPurchasePurchaseContext {
        ProductPurchasePurchaseContext {
            location_type: None,
        }
    }
}