interface IPage {
    document_id: string;
    envelope_id: string;
    fields?: ITemplateField[];
    image_uri?: null | string;
    page_number: number;
    sequence: number;
    template_document?: ITemplateDocument;
    template_id: string;
    thumbnail_url?: string;
}

Properties

document_id: string
envelope_id: string
fields?: ITemplateField[]
image_uri?: null | string

@deprecated. Clients should not attempt to access images directly. Call getTemplateDocumentPageDisplayUri() instead.

page_number: number

@deprecated. New code should use sequence

sequence: number

Note: Page numbers are 1-based

template_document?: ITemplateDocument
template_id: string
thumbnail_url?: string

@deprecated. Clients should not attempt to access images directly. Call getTemplateDocumentPageDisplayUri() instead.