SendPayload: {
    age?: number;
    email: Email;
    files?: File[];
    name?: string;
    onProgress?: ((progress) => void);
    sex?: Sex;
    urls?: string[];
}

Patient's e-mail and PDF file links that will be digitized

Type declaration

  • Optional age?: number

    Patient age, optional

  • email: Email

    Valid e-mail address string

  • Optional files?: File[]

    Blob files array

  • Optional name?: string

    Patient name, optional

  • Optional onProgress?: ((progress) => void)
      • (progress): void
      • Callback that accepts current upload progress (from 0 to 1)

        Parameters

        • progress: number

        Returns void

  • Optional sex?: Sex

    Patient sex, optional

    Default

    'U'
    
  • Optional urls?: string[]

    An array of PDF file urls which size is less than or equal to 1mb and number of urls should not be greater than 100

Generated using TypeDoc