/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { DraftLink } from './DraftLink'; import type { FieldResponse } from './FieldResponse'; import type { Question } from './Question'; import type { SigningSideResponse } from './SigningSideResponse'; export type Template = { /** * template id */ id: string; /** * document creation date */ createdDate: string; draftLink: DraftLink; /** * list of field items */ fields: Array; /** * url for signed in Juro users */ internalUrl: string; /** * template name */ name: string; /** * list of question items */ questions: Array; /** * url you would share with the outside world e.g. anonymous users */ sharingUrl: string; /** * list of signing side items */ signingSides: Array; /** * document state */ state: any; /** * edit in progress or published document status */ status: 'edit in progress' | 'published'; /** * date when document was last updated */ updatedDate: string; };