Struct clacks_mtproto::mtproto::payments::payment_receipt::PaymentReceipt [] [src]

pub struct PaymentReceipt {
    pub date: int,
    pub bot_id: int,
    pub invoice: Invoice,
    pub provider_id: int,
    pub info: Option<PaymentRequestedInfo>,
    pub shipping: Option<ShippingOption>,
    pub currency: string,
    pub total_amount: long,
    pub credentials_title: string,
    pub users: Vector<Boxed, User>,
}

TL-derived from payments.paymentReceipt

payments.paymentReceipt#500911e1 flags:# date:int bot_id:int invoice:Invoice provider_id:int info:flags.0?PaymentRequestedInfo shipping:flags.1?ShippingOption currency:string total_amount:long credentials_title:string users:Vector<User> = payments.PaymentReceipt;

Fields

Trait Implementations

impl Debug for PaymentReceipt
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for PaymentReceipt
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl BareSerialize for PaymentReceipt
[src]

impl BareDeserialize for PaymentReceipt
[src]

impl IntoBoxed for PaymentReceipt
[src]

Auto Trait Implementations