svix
Version:
Svix webhooks API client and webhook verification library
21 lines (17 loc) • 419 B
text/typescript
// this file is @generated
/* eslint @typescript-eslint/no-explicit-any: 0 */
export interface EndpointHeadersIn {
headers: { [key: string]: string };
}
export const EndpointHeadersInSerializer = {
_fromJsonObject(object: any): EndpointHeadersIn {
return {
headers: object["headers"],
};
},
_toJsonObject(self: EndpointHeadersIn): any {
return {
headers: self.headers,
};
},
};