@zeplin/sdk
Version:
Zeplin API client for JavaScript
26 lines (25 loc) • 702 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 transformNotificationUpdateBodyToJSON: (value: NotificationUpdateBody) => any;
export declare const transformJSONToNotificationUpdateBody: (value: any) => NotificationUpdateBody;
/**
*
* @export
* @interface NotificationUpdateBody
*/
export interface NotificationUpdateBody {
/**
* New is_read status for notifications
* @type {boolean}
* @memberof NotificationUpdateBody
*/
isRead: boolean;
}