/* * Tpay.com Technical Documentation * *

Demo transaction/masspayments api key:

Demo cards api key:

The terms seller and merchant are used interchangeably and they both refer to a person or a company registered at tpay.com to accept online payments.
Whenever term merchant panel is used it refers to the part of tpay.com website located at secure.tpay.com/panel.

For sandbox purposes use merchant demo account

ID - 1010, Password - demo

Remember that this is a shared account, so all data passed through will be publicly visible.

* * The version of the OpenAPI document: 1.2.1 * Contact: pt@tpay.com * Generated by: https://openapi-generator.tech */ #[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)] pub struct BlikResponse { /// Attention! result: 1 does not indicate transfer of funds! This is successful user app popup indicator. #[serde(rename = "result", skip_serializing_if = "Option::is_none")] pub result: Option, #[serde(rename = "availableUserApps", skip_serializing_if = "Option::is_none")] pub available_user_apps: Option>, #[serde(rename = "err", skip_serializing_if = "Option::is_none")] pub err: Option, } impl BlikResponse { pub fn new() -> BlikResponse { BlikResponse { result: None, available_user_apps: None, err: None, } } }