svix
Version:
Svix webhooks API client and webhook verification library
19 lines (15 loc) • 324 B
text/typescript
// this file is @generated
export enum SinkStatus {
Enabled = "enabled",
Paused = "paused",
Disabled = "disabled",
Retrying = "retrying",
}
export const SinkStatusSerializer = {
_fromJsonObject(object: any): SinkStatus {
return object;
},
_toJsonObject(self: SinkStatus): any {
return self;
},
};