/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * The error returned if your message status is failed or undelivered.
 * @export
 * @interface ModelError
 */
export interface ModelError {
    /**
     * The error_code provides more information about the failure. If the message was successful, this value is null
     * @type {string}
     * @memberof ModelError
     */
    readonly code?: string;
    /**
     *
     * @type {string}
     * @memberof ModelError
     */
    readonly message?: string;
}
export declare function ModelErrorFromJSON(json: any): ModelError;
export declare function ModelErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelError;
export declare function ModelErrorToJSON(value?: ModelError | null): any;
