UNPKG

box-node-sdk

Version:

Official SDK for Box Plaform APIs

31 lines (30 loc) 856 B
import * as schemas from '.'; /** * Box Sign templates * * The part of an API response that describes marker * based pagination */ export interface SignTemplates { /** * The limit that was used for these entries. This will be the same as the * `limit` query parameter unless that value exceeded the maximum value * allowed. The maximum value varies by API. * Example: 1000 */ limit?: number; /** * The marker for the start of the next page of results. * Example: JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii */ next_marker?: string; /** * The marker for the start of the previous page of results. * Example: JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVih */ prev_marker?: string; /** * A list of templates. */ entries?: schemas.SignTemplate[]; }