@zeplin/sdk
Version:
Zeplin API client for JavaScript
27 lines (26 loc) • 706 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.
*/
import { User } from './user';
export declare const transformNotificationActorToJSON: (value: NotificationActor) => any;
export declare const transformJSONToNotificationActor: (value: any) => NotificationActor;
/**
* The actor of the change triggering this notification
* @export
* @interface NotificationActor
*/
export interface NotificationActor {
/**
*
* @type {User}
* @memberof NotificationActor
*/
user: User;
}