boldsign
Version:
NodeJS client for boldsign
82 lines (75 loc) • 2.28 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';
import { NotificationSettings } from './notificationSettings';
export class EditSenderIdentityRequest {
'name'?: string | null;
'notificationSettings'?: NotificationSettings;
'redirectUrl'?: string | null;
'metaData'?: { [key: string]: string | null; } | null;
'locale'?: EditSenderIdentityRequest.LocaleEnum;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "name",
"baseName": "name",
"type": "string"
},
{
"name": "notificationSettings",
"baseName": "notificationSettings",
"type": "NotificationSettings"
},
{
"name": "redirectUrl",
"baseName": "redirectUrl",
"type": "string"
},
{
"name": "metaData",
"baseName": "metaData",
"type": "{ [key: string]: string | null; }"
},
{
"name": "locale",
"baseName": "locale",
"type": "EditSenderIdentityRequest.LocaleEnum"
} ];
static getAttributeTypeMap() {
return EditSenderIdentityRequest.attributeTypeMap;
}
}
export namespace EditSenderIdentityRequest {
export enum LocaleEnum {
En = <any> 'EN',
No = <any> 'NO',
Fr = <any> 'FR',
De = <any> 'DE',
Es = <any> 'ES',
Bg = <any> 'BG',
Cs = <any> 'CS',
Da = <any> 'DA',
It = <any> 'IT',
Nl = <any> 'NL',
Pl = <any> 'PL',
Pt = <any> 'PT',
Ro = <any> 'RO',
Ru = <any> 'RU',
Sv = <any> 'SV',
Default = <any> 'Default',
Ja = <any> 'JA',
Th = <any> 'TH',
ZhCn = <any> 'ZH_CN',
ZhTw = <any> 'ZH_TW',
Ko = <any> 'KO'
}
}