@zeplin/sdk
Version:
Zeplin API client for JavaScript
38 lines (37 loc) • 913 B
TypeScript
/**
* Zeplin API
* Access your resources in Zeplin
*
* Contact: support@zeplin.io
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export declare const transformErrorResponseToJSON: (value: ErrorResponse) => any;
export declare const transformJSONToErrorResponse: (value: any) => ErrorResponse;
/**
*
* @export
* @interface ErrorResponse
*/
export interface ErrorResponse {
/**
* A user readable descriptive message for the error
* @type {string}
* @memberof ErrorResponse
*/
message: string;
/**
* A detailed message describing the error
* @type {string}
* @memberof ErrorResponse
*/
detail?: string;
/**
* The unique code for the error
* @type {string}
* @memberof ErrorResponse
*/
code?: string;
}