UNPKG

boldsign

Version:

NodeJS client for boldsign

57 lines (50 loc) 1.49 kB
/** * BoldSign API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; export class CreateUser { 'emailId': string; 'teamId'?: string | null; 'userRole'?: CreateUser.UserRoleEnum; 'metaData'?: { [key: string]: string | null; } | null; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "emailId", "baseName": "emailId", "type": "string" }, { "name": "teamId", "baseName": "teamId", "type": "string" }, { "name": "userRole", "baseName": "userRole", "type": "CreateUser.UserRoleEnum" }, { "name": "metaData", "baseName": "metaData", "type": "{ [key: string]: string | null; }" } ]; static getAttributeTypeMap() { return CreateUser.attributeTypeMap; } } export namespace CreateUser { export enum UserRoleEnum { Admin = <any> 'Admin', TeamAdmin = <any> 'TeamAdmin', Member = <any> 'Member' } }