UNPKG

@zeplin/sdk

Version:
45 lines (44 loc) 1.15 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 { OrganizationMember } from './organization-member'; export declare const transformOrganizationToJSON: (value: Organization) => any; export declare const transformJSONToOrganization: (value: any) => Organization; /** * * @export * @interface Organization */ export interface Organization { /** * Organization\'s unique id * @type {string} * @memberof Organization */ id: string; /** * Name of the user * @type {string} * @memberof Organization */ name: string; /** * URL of the organization\'s logo * @type {string} * @memberof Organization */ logo?: string; /** * Members of the organization (Does not exist on the response when user is restricted in organization) * @type {Array<OrganizationMember>} * @memberof Organization */ members?: Array<OrganizationMember>; }