@zeplin/sdk
Version:
Zeplin API client for JavaScript
39 lines (38 loc) • 1.14 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 { OrganizationSummary } from './organization-summary';
export declare const transformWorkspaceOrganizationUpdatedEventResourceToJSON: (value: WorkspaceOrganizationUpdatedEventResource) => any;
export declare const transformJSONToWorkspaceOrganizationUpdatedEventResource: (value: any) => WorkspaceOrganizationUpdatedEventResource;
/**
*
* @export
* @interface WorkspaceOrganizationUpdatedEventResource
*/
export interface WorkspaceOrganizationUpdatedEventResource {
/**
*
* @type {string}
* @memberof WorkspaceOrganizationUpdatedEventResource
*/
id: string;
/**
*
* @type {string}
* @memberof WorkspaceOrganizationUpdatedEventResource
*/
type: 'OrganizationSummary';
/**
*
* @type {OrganizationSummary}
* @memberof WorkspaceOrganizationUpdatedEventResource
*/
data: OrganizationSummary;
}