@oystehr/sdk
Version:
Oystehr SDK
19 lines (18 loc) • 402 B
TypeScript
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;
};
}