FRE-709: Document duplicate recovery wake - FRE-635 already recovered via FRE-708
This commit is contained in:
20
node_modules/svix/src/models/messagePrecheckOut.ts
generated
vendored
Normal file
20
node_modules/svix/src/models/messagePrecheckOut.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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,
|
||||
};
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user