/**
 * 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 { InlineResponse4041Details } from './inline-response4041-details';
/**
 *
 * @export
 * @interface InlineResponse4041
 */
export interface InlineResponse4041 {
    /**
     * 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 InlineResponse4041
     */
    submitTimeUtc?: string;
    /**
     * The http status description of the submitted request.
     * @type {string}
     * @memberof InlineResponse4041
     */
    status?: string;
    /**
     * Documented reason codes. Client should be able to use the key for generating their own error message Possible Values:   - 'RESOURCE_NOT_FOUND'
     * @type {string}
     * @memberof InlineResponse4041
     */
    reason?: InlineResponse4041ReasonEnum;
    /**
     * Descriptive message for the error.
     * @type {string}
     * @memberof InlineResponse4041
     */
    message?: string;
    /**
     *
     * @type {Array<InlineResponse4041Details>}
     * @memberof InlineResponse4041
     */
    details?: Array<InlineResponse4041Details>;
}
/**
    * @export
    * @enum {string}
    */
export declare enum InlineResponse4041ReasonEnum {
    RESOURCENOTFOUND = "RESOURCE_NOT_FOUND"
}
