@zeplin/sdk
Version:
Zeplin API client for JavaScript
50 lines (49 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.
*/
export declare const transformZeplinApplicationToJSON: (value: ZeplinApplication) => any;
export declare const transformJSONToZeplinApplication: (value: any) => ZeplinApplication;
/**
*
* @export
* @interface ZeplinApplication
*/
export interface ZeplinApplication {
/**
* The unique id of the app
* @type {string}
* @memberof ZeplinApplication
*/
id: string;
/**
* The name of the app
* @type {string}
* @memberof ZeplinApplication
*/
name: string;
/**
* The description of the app
* @type {string}
* @memberof ZeplinApplication
*/
description?: string;
/**
* The website of the app
* @type {string}
* @memberof ZeplinApplication
*/
website?: string;
/**
* The logo of the app
* @type {string}
* @memberof ZeplinApplication
*/
logo?: string;
}