@zeplin/sdk
Version:
Zeplin API client for JavaScript
32 lines (31 loc) • 853 B
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 transformOrganizationBillingToJSON: (value: OrganizationBilling) => any;
export declare const transformJSONToOrganizationBilling: (value: any) => OrganizationBilling;
/**
*
* @export
* @interface OrganizationBilling
*/
export interface OrganizationBilling {
/**
* Total number of seats reserved for the organization
* @type {number}
* @memberof OrganizationBilling
*/
totalSeatCount: number;
/**
* Number of used seats for the organization
* @type {number}
* @memberof OrganizationBilling
*/
usedSeatCount: number;
}