/**
 * 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 transformWorkspaceOrganizationUpdatedEventToJSON: (value: WorkspaceOrganizationUpdatedEvent) => any;
export declare const transformJSONToWorkspaceOrganizationUpdatedEvent: (value: any) => WorkspaceOrganizationUpdatedEvent;
/**
 *
 * @export
 * @interface WorkspaceOrganizationUpdatedEvent
 */
export interface WorkspaceOrganizationUpdatedEvent {
    /**
     *
     * @type {string}
     * @memberof WorkspaceOrganizationUpdatedEvent
     */
    event: 'workspace.organization';
    /**
     *
     * @type {string}
     * @memberof WorkspaceOrganizationUpdatedEvent
     */
    action: 'updated';
    /**
     *
     * @type {number}
     * @memberof WorkspaceOrganizationUpdatedEvent
     */
    timestamp: number;
    /**
     *
     * @type {WorkspaceOrganizationUpdatedEventResource}
     * @memberof WorkspaceOrganizationUpdatedEvent
     */
    resource: WorkspaceOrganizationUpdatedEventResource;
    /**
     *
     * @type {WebhookEventActor}
     * @memberof WorkspaceOrganizationUpdatedEvent
     */
    actor: WebhookEventActor;
}
