@paydock/client-sdk
Version:
Paydock client sdk
45 lines • 1.3 kB
TypeScript
export interface ChargeWalletTokenMeta {
charge: {
id: string;
amount: number;
currency: string;
capture?: boolean;
reference?: string;
shipping?: {
amount?: number;
currency?: string;
address_line1?: string;
address_line2?: string;
address_line3?: string;
address_city?: string;
address_postcode?: string;
address_state?: string;
address_country?: string;
address_country_code?: string;
address_company?: string;
address_origin_postcode?: string;
method?: string;
type?: string;
options?: Array<{
id?: string;
label?: string;
detail?: string;
amount?: string;
currency?: string;
type?: string;
}>;
contact?: {
first_name?: string;
last_name?: string;
email?: string;
phone?: string;
phone2?: string;
};
};
};
gateway: {
mode: string;
type: string;
};
}
//# sourceMappingURL=charge-wallet-token-meta.interface.d.ts.map