Interface PaymentOrderType

interface PaymentOrderType {
    amount: number;
    auto_capture: boolean;
    buyer: BuyerType;
    cancel_url: string;
    code: string;
    currency: string;
    cycle: string;
    description: string;
    id: string;
    integration_mode: string;
    mode: string;
    notification_url: string;
    object: string;
    occurrences: string;
    original_amount: number;
    partial_allowed: boolean;
    platform_options: PlatformsOptionsType;
    platforms: string[];
    reference: string;
    return_url: string;
    shop_id: string;
    shop_name: string;
    status: string;
    status_reason: string;
    transactions: TransactionType[];
}

Properties

amount: number
auto_capture: boolean
buyer: BuyerType
cancel_url: string
code: string
currency: string
cycle: string
description: string
id: string
integration_mode: string
mode: string
notification_url: string
object: string
occurrences: string
original_amount: number
partial_allowed: boolean
platform_options: PlatformsOptionsType
platforms: string[]
reference: string
return_url: string
shop_id: string
shop_name: string
status: string
status_reason: string
transactions: TransactionType[]

Generated using TypeDoc