proxycurl_linkedin_rs/models/credit_balance.rs
1/*
2 * Proxycurl API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: 1.0.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
12pub struct CreditBalance {
13 /// Your current credit(s)
14 #[serde(rename = "credit_balance", skip_serializing_if = "Option::is_none")]
15 pub credit_balance: Option<i32>,
16}
17
18impl CreditBalance {
19 pub fn new() -> CreditBalance {
20 CreditBalance {
21 credit_balance: None,
22 }
23 }
24}