UNPKG

boldsign

Version:

NodeJS client for boldsign

109 lines (102 loc) 3.21 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 EmbeddedDocumentEditJsonRequest { 'redirectUrl'?: string | null; 'showToolbar'?: boolean = false; 'sendViewOption'?: EmbeddedDocumentEditJsonRequest.SendViewOptionEnum = EmbeddedDocumentEditJsonRequest.SendViewOptionEnum.PreparePage; 'locale'?: EmbeddedDocumentEditJsonRequest.LocaleEnum = EmbeddedDocumentEditJsonRequest.LocaleEnum.En; 'showSendButton'?: boolean = true; 'showPreviewButton'?: boolean = true; 'showNavigationButtons'?: boolean = true; 'linkValidTill'?: Date | null; 'onBehalfOf'?: string | null; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "redirectUrl", "baseName": "redirectUrl", "type": "string" }, { "name": "showToolbar", "baseName": "showToolbar", "type": "boolean" }, { "name": "sendViewOption", "baseName": "sendViewOption", "type": "EmbeddedDocumentEditJsonRequest.SendViewOptionEnum" }, { "name": "locale", "baseName": "locale", "type": "EmbeddedDocumentEditJsonRequest.LocaleEnum" }, { "name": "showSendButton", "baseName": "showSendButton", "type": "boolean" }, { "name": "showPreviewButton", "baseName": "showPreviewButton", "type": "boolean" }, { "name": "showNavigationButtons", "baseName": "showNavigationButtons", "type": "boolean" }, { "name": "linkValidTill", "baseName": "linkValidTill", "type": "Date" }, { "name": "onBehalfOf", "baseName": "onBehalfOf", "type": "string" } ]; static getAttributeTypeMap() { return EmbeddedDocumentEditJsonRequest.attributeTypeMap; } } export namespace EmbeddedDocumentEditJsonRequest { export enum SendViewOptionEnum { PreparePage = <any> 'PreparePage', FillingPage = <any> 'FillingPage' } 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' } }