@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
63 lines (62 loc) • 1.65 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 { InlineResponse401Fields } from './inline-response401-fields';
import { InlineResponse401Links } from './inline-response401-links';
/**
*
* @export
* @interface InlineResponse401
*/
export interface InlineResponse401 {
/**
*
* @type {InlineResponse401Links}
* @memberof InlineResponse401
*/
links?: InlineResponse401Links;
/**
* Valid Values: * FORBIDDEN_RESPONSE * VALIDATION_ERROR * UNSUPPORTED_MEDIA_TYPE * MALFORMED_PAYLOAD_ERROR * SERVER_ERROR
* @type {string}
* @memberof InlineResponse401
*/
code?: string;
/**
*
* @type {string}
* @memberof InlineResponse401
*/
correlationId?: string;
/**
*
* @type {string}
* @memberof InlineResponse401
*/
detail?: string;
/**
*
* @type {Array<InlineResponse401Fields>}
* @memberof InlineResponse401
*/
fields?: Array<InlineResponse401Fields>;
/**
* Valid Values: * cybsapi.forbidden.response * cybsapi.validation.error * cybsapi.media.notsupported
* @type {string}
* @memberof InlineResponse401
*/
localizationKey?: string;
/**
*
* @type {string}
* @memberof InlineResponse401
*/
message?: string;
}