UNPKG

@zeplin/sdk

Version:
21 lines (20 loc) 1.01 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 { WorkspaceOrganizationJoinRequestedEvent } from './workspace-organization-join-requested-event'; import { WorkspaceOrganizationUpdatedEvent } from './workspace-organization-updated-event'; export declare const transformJSONToWorkspaceOrganizationEvent: (value: any) => WorkspaceOrganizationEvent; export declare const transformWorkspaceOrganizationEventToJSON: (value: WorkspaceOrganizationEvent) => any; /** * @type WorkspaceOrganizationEvent * This event is used to notify webhooks about any of these activies: - Name or logo of the organization was changed - User requested to join the organization * @export */ export declare type WorkspaceOrganizationEvent = WorkspaceOrganizationJoinRequestedEvent | WorkspaceOrganizationUpdatedEvent;