UNPKG

@zeplin/sdk

Version:
39 lines (38 loc) 1.1 kB
/** * 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 { Notification } from './notification'; export declare const transformWorkspaceNotificationCreatedEventResourceToJSON: (value: WorkspaceNotificationCreatedEventResource) => any; export declare const transformJSONToWorkspaceNotificationCreatedEventResource: (value: any) => WorkspaceNotificationCreatedEventResource; /** * * @export * @interface WorkspaceNotificationCreatedEventResource */ export interface WorkspaceNotificationCreatedEventResource { /** * * @type {string} * @memberof WorkspaceNotificationCreatedEventResource */ id: string; /** * * @type {string} * @memberof WorkspaceNotificationCreatedEventResource */ type: 'Notification'; /** * * @type {Notification} * @memberof WorkspaceNotificationCreatedEventResource */ data: Notification; }