@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
39 lines (38 loc) • 1.11 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 { InlineResponse20010ResponseRecord } from './inline-response20010-response-record';
import { InlineResponse20010SourceRecord } from './inline-response20010-source-record';
/**
*
* @export
* @interface InlineResponse20010Records
*/
export interface InlineResponse20010Records {
/**
*
* @type {string}
* @memberof InlineResponse20010Records
*/
id?: string;
/**
*
* @type {InlineResponse20010SourceRecord}
* @memberof InlineResponse20010Records
*/
sourceRecord?: InlineResponse20010SourceRecord;
/**
*
* @type {InlineResponse20010ResponseRecord}
* @memberof InlineResponse20010Records
*/
responseRecord?: InlineResponse20010ResponseRecord;
}