@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
33 lines (32 loc) • 1.23 kB
TypeScript
/**
* CyberSource Merged Spec
* All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
*
* OpenAPI spec version: 0.0.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
import { PtsV2PaymentsPost201Response1OrderInformationBillTo } from './pts-v2-payments-post201-response1-order-information-bill-to';
import { PtsV2PaymentsPost201Response1OrderInformationShipTo } from './pts-v2-payments-post201-response1-order-information-ship-to';
/**
*
* @export
* @interface PtsV2PaymentsPost201Response1OrderInformation
*/
export interface PtsV2PaymentsPost201Response1OrderInformation {
/**
*
* @type {PtsV2PaymentsPost201Response1OrderInformationBillTo}
* @memberof PtsV2PaymentsPost201Response1OrderInformation
*/
billTo?: PtsV2PaymentsPost201Response1OrderInformationBillTo;
/**
*
* @type {PtsV2PaymentsPost201Response1OrderInformationShipTo}
* @memberof PtsV2PaymentsPost201Response1OrderInformation
*/
shipTo?: PtsV2PaymentsPost201Response1OrderInformationShipTo;
}