svix
Version:
Svix webhooks API client and webhook verification library
21 lines (17 loc) • 432 B
text/typescript
// this file is @generated
export interface MessagePrecheckOut {
/** Whether there are any active endpoint that would get sent such a message. */
active: boolean;
}
export const MessagePrecheckOutSerializer = {
_fromJsonObject(object: any): MessagePrecheckOut {
return {
active: object["active"],
};
},
_toJsonObject(self: MessagePrecheckOut): any {
return {
active: self.active,
};
},
};