UNPKG

@zeplin/sdk

Version:
38 lines (37 loc) 914 B
/** * 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. */ export declare const transformOrganizationSummaryToJSON: (value: OrganizationSummary) => any; export declare const transformJSONToOrganizationSummary: (value: any) => OrganizationSummary; /** * * @export * @interface OrganizationSummary */ export interface OrganizationSummary { /** * Organization\'s unique id * @type {string} * @memberof OrganizationSummary */ id: string; /** * Name of the user * @type {string} * @memberof OrganizationSummary */ name: string; /** * URL of the organization\'s logo * @type {string} * @memberof OrganizationSummary */ logo?: string; }