UNPKG

@zeplin/sdk

Version:
52 lines (51 loc) 1.49 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 { WebhookEventActor } from './webhook-event-actor'; import { WorkspaceNotificationCreatedEventResource } from './workspace-notification-created-event-resource'; export declare const transformWorkspaceNotificationUpdatedEventToJSON: (value: WorkspaceNotificationUpdatedEvent) => any; export declare const transformJSONToWorkspaceNotificationUpdatedEvent: (value: any) => WorkspaceNotificationUpdatedEvent; /** * * @export * @interface WorkspaceNotificationUpdatedEvent */ export interface WorkspaceNotificationUpdatedEvent { /** * * @type {string} * @memberof WorkspaceNotificationUpdatedEvent */ event: 'workspace.notification'; /** * * @type {string} * @memberof WorkspaceNotificationUpdatedEvent */ action: 'updated'; /** * * @type {number} * @memberof WorkspaceNotificationUpdatedEvent */ timestamp: number; /** * * @type {WorkspaceNotificationCreatedEventResource} * @memberof WorkspaceNotificationUpdatedEvent */ resource: WorkspaceNotificationCreatedEventResource; /** * * @type {WebhookEventActor} * @memberof WorkspaceNotificationUpdatedEvent */ actor: WebhookEventActor; }