use serde::{Serialize, Deserialize};
/**The channel used to make a payment.
`online:` transactions that took place online.
`in store:` transactions that were made at a physical location.
`other:` transactions that relate to banks, e.g. fees or deposits.*/
#[derive(Debug, Serialize, Deserialize, Clone)]
pub enum PaymentChannel {
#[serde(rename = "online")]
Online,
#[serde(rename = "in store")]
InStore,
#[serde(rename = "other")]
Other,
}