verificac19-sdk
Version:
VerificaC19 SDK for Node.js
17 lines (16 loc) • 354 B
text/typescript
/**
* The shape of a Test
*/
export interface Test {
disease: string;
typeOfTest: string;
testName: string;
testNameAndManufacturer: null;
dateTimeOfCollection: string;
dateTimeOfTestResult: null;
testResult: string;
testingCentre: string;
countryOfVaccination: string;
certificateIssuer: string;
certificateIdentifier: string;
}