UNPKG

@zeplin/sdk

Version:
59 lines (58 loc) 1.71 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 { 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 transformProjectSpacingTokenUpdatedEventToJSON: (value: ProjectSpacingTokenUpdatedEvent) => any; export declare const transformJSONToProjectSpacingTokenUpdatedEvent: (value: any) => ProjectSpacingTokenUpdatedEvent; /** * * @export * @interface ProjectSpacingTokenUpdatedEvent */ export interface ProjectSpacingTokenUpdatedEvent { /** * * @type {string} * @memberof ProjectSpacingTokenUpdatedEvent */ event: 'project.spacing_token'; /** * * @type {string} * @memberof ProjectSpacingTokenUpdatedEvent */ action: 'updated'; /** * * @type {number} * @memberof ProjectSpacingTokenUpdatedEvent */ timestamp: number; /** * * @type {ProjectSpacingTokenCreatedEventResource} * @memberof ProjectSpacingTokenUpdatedEvent */ resource: ProjectSpacingTokenCreatedEventResource; /** * * @type {ProjectSpacingTokenEventContext} * @memberof ProjectSpacingTokenUpdatedEvent */ context: ProjectSpacingTokenEventContext; /** * * @type {WebhookEventActor} * @memberof ProjectSpacingTokenUpdatedEvent */ actor: WebhookEventActor; }