/*
* moon-vault-api
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct PaymentType {
#[serde(rename = "icon")]
pub icon: String,
#[serde(rename = "name")]
pub name: String,
#[serde(rename = "paymentTypeId")]
pub payment_type_id: String,
}
impl PaymentType {
pub fn new(icon: String, name: String, payment_type_id: String) -> PaymentType {
PaymentType {
icon,
name,
payment_type_id,
}
}
}