@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
56 lines (55 loc) • 1.73 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 { InlineResponse2003Keys } from './inline-response2003-keys';
/**
* Successful searchKeysResponse
* @export
* @interface InlineResponse2003
*/
export interface InlineResponse2003 {
/**
* Time of request in UTC. `Format: YYYY-MM-DDThh:mm:ssZ` Example 2016-08-11T22:47:57Z equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The T separates the date and the time. The Z indicates UTC.
* @type {string}
* @memberof InlineResponse2003
*/
submitTimeUtc?: string;
/**
* Specifies the total number of items found based on the request
* @type {number}
* @memberof InlineResponse2003
*/
totalCount?: number;
/**
* Specifies the record offset from the records are returned part of the response
* @type {number}
* @memberof InlineResponse2003
*/
offset?: number;
/**
* Specifies the maximum number of records requested part of the response
* @type {number}
* @memberof InlineResponse2003
*/
limit?: number;
/**
* Specifies a comma separated list of field names based on which the result is sorted.
* @type {string}
* @memberof InlineResponse2003
*/
sort?: string;
/**
*
* @type {Array<InlineResponse2003Keys>}
* @memberof InlineResponse2003
*/
keys?: Array<InlineResponse2003Keys>;
}