UNPKG

boldsign

Version:

NodeJS client for boldsign

51 lines (44 loc) 1.34 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'; import { GroupUser } from './groupUser'; export class GroupContact { 'groupName'?: string | null; 'groupId'?: string | null; 'contacts'?: Array<GroupUser> | null; 'directories'?: Array<string> | null; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "groupName", "baseName": "groupName", "type": "string" }, { "name": "groupId", "baseName": "groupId", "type": "string" }, { "name": "contacts", "baseName": "contacts", "type": "Array<GroupUser>" }, { "name": "directories", "baseName": "directories", "type": "Array<string>" } ]; static getAttributeTypeMap() { return GroupContact.attributeTypeMap; } }