@zeplin/sdk
Version:
Zeplin API client for JavaScript
52 lines (51 loc) • 1.56 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 { WorkspaceOrganizationUpdatedEventResource } from './workspace-organization-updated-event-resource';
export declare const transformWorkspaceOrganizationJoinRequestedEventToJSON: (value: WorkspaceOrganizationJoinRequestedEvent) => any;
export declare const transformJSONToWorkspaceOrganizationJoinRequestedEvent: (value: any) => WorkspaceOrganizationJoinRequestedEvent;
/**
*
* @export
* @interface WorkspaceOrganizationJoinRequestedEvent
*/
export interface WorkspaceOrganizationJoinRequestedEvent {
/**
*
* @type {string}
* @memberof WorkspaceOrganizationJoinRequestedEvent
*/
event: 'workspace.organization';
/**
*
* @type {string}
* @memberof WorkspaceOrganizationJoinRequestedEvent
*/
action: 'join_requested';
/**
*
* @type {number}
* @memberof WorkspaceOrganizationJoinRequestedEvent
*/
timestamp: number;
/**
*
* @type {WorkspaceOrganizationUpdatedEventResource}
* @memberof WorkspaceOrganizationJoinRequestedEvent
*/
resource: WorkspaceOrganizationUpdatedEventResource;
/**
*
* @type {WebhookEventActor}
* @memberof WorkspaceOrganizationJoinRequestedEvent
*/
actor: WebhookEventActor;
}