whalecloud-dxp-api-react-native
Version:
This section explains how to use the SDK and illustrates it with an example: - This chapter is essential to learn - For specific business development, see [Bussiness Scenario](https://www.digchan.info/en-US/dxp/user-sso/sign-up) - The Business Scenario pr
89 lines (81 loc) • 2.37 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* DXP API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface OrderPaymentInfoForQuery
*/
export interface OrderPaymentInfoForQuery {
/**
* The type of payment method used for the payment. Possible values are: /B-Balance; / O-Online Payment; / P-Points; / D-Pay on delivery
* @type {string}
* @memberof OrderPaymentInfoForQuery
*/
'paymentMethodType'?: OrderPaymentInfoForQueryPaymentMethodTypeEnum;
/**
* Payment Method ID, identifier for the payment method
* @type {number}
* @memberof OrderPaymentInfoForQuery
*/
'paymentMethodId'?: number;
/**
* The unique identifier for the payment channel.
* @type {number}
* @memberof OrderPaymentInfoForQuery
*/
'paymentChannelId'?: number;
/**
* The name of the payment method.
* @type {string}
* @memberof OrderPaymentInfoForQuery
*/
'paymentMethodName'?: string;
/**
* The formatted amount.
* @type {string}
* @memberof OrderPaymentInfoForQuery
*/
'amount'?: string;
/**
* The amount as an integer.
* @type {number}
* @memberof OrderPaymentInfoForQuery
*/
'amountInt'?: number;
/**
* The symbol of the currency.
* @type {string}
* @memberof OrderPaymentInfoForQuery
*/
'currencySymbol'?: string;
/**
* Transaction Serial Number, unique identifier for the transaction.
* @type {string}
* @memberof OrderPaymentInfoForQuery
*/
'transactionSN'?: string;
/**
* Date of the transaction. Use ISO 8601 standard, YYYY-MM-DDTHH:MM:SS
* @type {string}
* @memberof OrderPaymentInfoForQuery
*/
'transactionDate'?: string;
}
export const OrderPaymentInfoForQueryPaymentMethodTypeEnum = {
B: 'B',
O: 'O',
P: 'P',
D: 'D'
} as const;
export type OrderPaymentInfoForQueryPaymentMethodTypeEnum = typeof OrderPaymentInfoForQueryPaymentMethodTypeEnum[keyof typeof OrderPaymentInfoForQueryPaymentMethodTypeEnum];