@zeplin/sdk
Version:
Zeplin API client for JavaScript
38 lines (37 loc) • 1.21 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 transformOrganizationMemberUpdateBodyToJSON: (value: OrganizationMemberUpdateBody) => any;
export declare const transformJSONToOrganizationMemberUpdateBody: (value: any) => OrganizationMemberUpdateBody;
/**
*
* @export
* @interface OrganizationMemberUpdateBody
*/
export interface OrganizationMemberUpdateBody {
/**
* Tags of the user in the organization
* @type {Set<string>}
* @memberof OrganizationMemberUpdateBody
*/
tags?: Set<string>;
/**
* The role of the user in the organization ☝️Note that the Developer role maps to `member` and the Reviewer role maps to `alien` in the API.
* @type {string}
* @memberof OrganizationMemberUpdateBody
*/
role?: 'admin' | 'editor' | 'member' | 'alien';
/**
* Whether the user\'s membership is restricted to only the
* @type {boolean}
* @memberof OrganizationMemberUpdateBody
*/
restricted?: boolean;
}