boldsign
Version:
NodeJS client for boldsign
44 lines (37 loc) • 1.15 kB
text/typescript
/**
* 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 FormFieldPermission {
'canAdd'?: boolean;
'canModify'?: boolean;
'canModifyDefaultValue'?: boolean;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "canAdd",
"baseName": "canAdd",
"type": "boolean"
},
{
"name": "canModify",
"baseName": "canModify",
"type": "boolean"
},
{
"name": "canModifyDefaultValue",
"baseName": "canModifyDefaultValue",
"type": "boolean"
} ];
static getAttributeTypeMap() {
return FormFieldPermission.attributeTypeMap;
}
}