boldsign
Version:
NodeJS client for boldsign
110 lines (109 loc) • 3.26 kB
TypeScript
import { RequestFile } from './models';
import { DocumentCC } from './documentCC';
import { DocumentInfo } from './documentInfo';
import { FormGroup } from './formGroup';
import { RecipientNotificationSettings } from './recipientNotificationSettings';
import { ReminderSettings } from './reminderSettings';
import { Role } from './role';
export declare class EmbeddedSendTemplateFormRequest {
'files'?: Array<RequestFile> | null;
'fileUrls'?: Array<string> | null;
'redirectUrl'?: string | null;
'showToolbar'?: boolean;
'sendViewOption'?: EmbeddedSendTemplateFormRequest.SendViewOptionEnum;
'showSaveButton'?: boolean;
'locale'?: EmbeddedSendTemplateFormRequest.LocaleEnum;
'showSendButton'?: boolean;
'showPreviewButton'?: boolean;
'showNavigationButtons'?: boolean;
'sendLinkValidTill'?: Date | null;
'showTooltip'?: boolean;
'documentId'?: string | null;
'title'?: string | null;
'message'?: string | null;
'roles'?: Array<Role> | null;
'brandId'?: string | null;
'labels'?: Array<string> | null;
'disableEmails'?: boolean;
'disableSMS'?: boolean;
'hideDocumentId'?: boolean | null;
'reminderSettings'?: ReminderSettings;
'cc'?: Array<DocumentCC> | null;
'expiryDays'?: number;
'expiryDateType'?: EmbeddedSendTemplateFormRequest.ExpiryDateTypeEnum;
'expiryValue'?: number;
'enablePrintAndSign'?: boolean;
'enableReassign'?: boolean | null;
'enableSigningOrder'?: boolean | null;
'disableExpiryAlert'?: boolean | null;
'documentInfo'?: Array<DocumentInfo> | null;
'onBehalfOf'?: string | null;
'isSandbox'?: boolean | null;
'roleRemovalIndices'?: Array<number> | null;
'documentDownloadOption'?: EmbeddedSendTemplateFormRequest.DocumentDownloadOptionEnum;
'metaData'?: {
[key: string]: string | null;
} | null;
'formGroups'?: Array<FormGroup> | null;
'removeFormFields'?: Array<string> | null;
'recipientNotificationSettings'?: RecipientNotificationSettings;
'enableAuditTrailLocalization'?: boolean | null;
'downloadFileName'?: string | null;
'scheduledSendTime'?: number | null;
'allowScheduledSend'?: boolean;
'allowedSignatureTypes'?: Array<EmbeddedSendTemplateFormRequest.AllowedSignatureTypesEnum>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace EmbeddedSendTemplateFormRequest {
enum SendViewOptionEnum {
PreparePage,
FillingPage
}
enum LocaleEnum {
En,
No,
Fr,
De,
Es,
Bg,
Cs,
Da,
It,
Nl,
Pl,
Pt,
Ro,
Ru,
Sv,
Default,
Ja,
Th,
ZhCn,
ZhTw,
Ko
}
enum ExpiryDateTypeEnum {
Days,
Hours,
SpecificDateTime
}
enum DocumentDownloadOptionEnum {
Combined,
Individually
}
enum AllowedSignatureTypesEnum {
Text,
Draw,
Image
}
}