@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
61 lines (60 loc) • 1.66 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.
*/
/**
*
* @export
* @interface V1FileDetailsGet200ResponseFileDetails
*/
export interface V1FileDetailsGet200ResponseFileDetails {
/**
* Unique identifier of a file
* @type {string}
* @memberof V1FileDetailsGet200ResponseFileDetails
*/
fileId?: string;
/**
* Name of the file
* @type {string}
* @memberof V1FileDetailsGet200ResponseFileDetails
*/
name?: string;
/**
* Date and time for the file in PST
* @type {Date}
* @memberof V1FileDetailsGet200ResponseFileDetails
*/
createdTime?: Date;
/**
* Date and time for the file in PST
* @type {Date}
* @memberof V1FileDetailsGet200ResponseFileDetails
*/
lastModifiedTime?: Date;
/**
* Date and time for the file in PST
* @type {string}
* @memberof V1FileDetailsGet200ResponseFileDetails
*/
date?: string;
/**
* 'File extension' Valid values: - 'application/xml' - 'text/csv' - 'application/pdf' - 'application/octet-stream'
* @type {string}
* @memberof V1FileDetailsGet200ResponseFileDetails
*/
mimeType?: string;
/**
* Size of the file in bytes
* @type {number}
* @memberof V1FileDetailsGet200ResponseFileDetails
*/
size?: number;
}