@oystehr/sdk
Version:
Oystehr SDK
26 lines (24 loc) • 429 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
export interface ZambdaExecuteResult {
/**
* HTTP status code from the Zambda Function
*/
status: number;
/**
* JSON response payload from the Zambda Function
*/
output:
| {
[k: string]: any;
}
| any[]
| string
| number
| null;
/**
* Optional HTTP headers returned by the Zambda Function
*/
headers?: {
[k: string]: any;
};
}