/*
* BTCPay Greenfield API
*
* A full API to use your BTCPay Server
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct OnChainPaymentMethodPreviewResultData {
/// a list of addresses generated by the derivation scheme
#[serde(rename = "addresses", skip_serializing_if = "Option::is_none")]
pub addresses: Option<Vec<crate::models::OnChainPaymentMethodPreviewResultAddressItem>>,
}
impl OnChainPaymentMethodPreviewResultData {
pub fn new() -> OnChainPaymentMethodPreviewResultData {
OnChainPaymentMethodPreviewResultData {
addresses: None,
}
}
}