@zeplin/sdk
Version:
Zeplin API client for JavaScript
52 lines (51 loc) • 1.49 kB
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 { WebhookEventActor } from './webhook-event-actor';
import { WorkspaceNotificationCreatedEventResource } from './workspace-notification-created-event-resource';
export declare const transformWorkspaceNotificationCreatedEventToJSON: (value: WorkspaceNotificationCreatedEvent) => any;
export declare const transformJSONToWorkspaceNotificationCreatedEvent: (value: any) => WorkspaceNotificationCreatedEvent;
/**
*
* @export
* @interface WorkspaceNotificationCreatedEvent
*/
export interface WorkspaceNotificationCreatedEvent {
/**
*
* @type {string}
* @memberof WorkspaceNotificationCreatedEvent
*/
event: 'workspace.notification';
/**
*
* @type {string}
* @memberof WorkspaceNotificationCreatedEvent
*/
action: 'created';
/**
*
* @type {number}
* @memberof WorkspaceNotificationCreatedEvent
*/
timestamp: number;
/**
*
* @type {WorkspaceNotificationCreatedEventResource}
* @memberof WorkspaceNotificationCreatedEvent
*/
resource: WorkspaceNotificationCreatedEventResource;
/**
*
* @type {WebhookEventActor}
* @memberof WorkspaceNotificationCreatedEvent
*/
actor: WebhookEventActor;
}