@zeplin/sdk
Version:
Zeplin API client for JavaScript
59 lines (58 loc) • 1.71 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 { ProjectSpacingTokenCreatedEventResource } from './project-spacing-token-created-event-resource';
import { ProjectSpacingTokenEventContext } from './project-spacing-token-event-context';
import { WebhookEventActor } from './webhook-event-actor';
export declare const transformProjectSpacingTokenCreatedEventToJSON: (value: ProjectSpacingTokenCreatedEvent) => any;
export declare const transformJSONToProjectSpacingTokenCreatedEvent: (value: any) => ProjectSpacingTokenCreatedEvent;
/**
*
* @export
* @interface ProjectSpacingTokenCreatedEvent
*/
export interface ProjectSpacingTokenCreatedEvent {
/**
*
* @type {string}
* @memberof ProjectSpacingTokenCreatedEvent
*/
event: 'project.spacing_token';
/**
*
* @type {string}
* @memberof ProjectSpacingTokenCreatedEvent
*/
action: 'created';
/**
*
* @type {number}
* @memberof ProjectSpacingTokenCreatedEvent
*/
timestamp: number;
/**
*
* @type {ProjectSpacingTokenCreatedEventResource}
* @memberof ProjectSpacingTokenCreatedEvent
*/
resource: ProjectSpacingTokenCreatedEventResource;
/**
*
* @type {ProjectSpacingTokenEventContext}
* @memberof ProjectSpacingTokenCreatedEvent
*/
context: ProjectSpacingTokenEventContext;
/**
*
* @type {WebhookEventActor}
* @memberof ProjectSpacingTokenCreatedEvent
*/
actor: WebhookEventActor;
}