[][src]Struct opennode::charge::Charge

pub struct Charge {
    pub id: String,
    pub description: String,
    pub amount: u64,
    pub status: Status,
    pub fee: Option<u64>,
    pub fiat_value: f64,
    pub currency: Option<Currency>,
    pub created_at: u64,
    pub success_url: Option<String>,
    pub notes: String,
    pub auto_settle: bool,
    pub order_id: Option<String>,
    pub chain_invoice: Option<Chain>,
    pub lightning_invoice: Option<Lightning>,
    pub hashed_order: Option<String>,
}

Charge is a charge resource.

Fields

id: Stringdescription: String

Charge Description

amount: u64

Charge price in satoshis

status: Status

Charge status unpaid/processing/paid

fee: Option<u64>

Charge fee in satoshis

fiat_value: f64

Charge value at issue time

currency: Option<Currency>

Charge currency

created_at: u64

timestamp

success_url: Option<String>

URL where user gets redirected after payment

notes: String

Charge notes

auto_settle: bool

Charge requested instant exchange

order_id: Option<String>

External order ID

chain_invoice: Option<Chain>

Charge payment details

lightning_invoice: Option<Lightning>

lightning_invoice

hashed_order: Option<String>

Hashed Order OpenNode signs all charge related events it sends to your endpoints by including a hashed_order field on the event payload. This allows you to validate that the events were sent by OpenNode and not by a third party.

Trait Implementations

impl Debug for Charge[src]

impl Serialize for Charge[src]

impl<'de> Deserialize<'de> for Charge[src]

Auto Trait Implementations

impl Send for Charge

impl Sync for Charge

impl Unpin for Charge

impl UnwindSafe for Charge

impl RefUnwindSafe for Charge

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]