svix
Version:
Svix webhooks API client and webhook verification library
23 lines (19 loc) • 454 B
text/typescript
// this file is @generated
export interface EndpointTransformationIn {
code?: string | null;
enabled?: boolean;
}
export const EndpointTransformationInSerializer = {
_fromJsonObject(object: any): EndpointTransformationIn {
return {
code: object["code"],
enabled: object["enabled"],
};
},
_toJsonObject(self: EndpointTransformationIn): any {
return {
code: self.code,
enabled: self.enabled,
};
},
};