Update auto-generated bindings to LDK v0.0.99
[ldk-java] / ts / structs / MessageSendEvent.ts
index a2f96107c35a57dfbc6909482050731b2a22f5f9..b5b708c1ee0f94597b610a6a1f746ccee69815f1 100644 (file)
@@ -52,6 +52,9 @@ export default class MessageSendEvent extends CommonBase {
                if (raw_val instanceof bindings.LDKMessageSendEvent.BroadcastChannelUpdate) {
                        return new BroadcastChannelUpdate(this.ptr, raw_val);
                }
+               if (raw_val instanceof bindings.LDKMessageSendEvent.SendChannelUpdate) {
+                       return new SendChannelUpdate(this.ptr, raw_val);
+               }
                if (raw_val instanceof bindings.LDKMessageSendEvent.HandleError) {
                        return new HandleError(this.ptr, raw_val);
                }
@@ -238,6 +241,18 @@ export class BroadcastChannelUpdate extends MessageSendEvent {
                this.msg = msg_hu_conv;
        }
 }
+export class SendChannelUpdate extends MessageSendEvent {
+       public node_id: Uint8Array;
+       public msg: ChannelUpdate;
+       private constructor(ptr: number, obj: bindings.LDKMessageSendEvent.SendChannelUpdate) {
+               super(null, ptr);
+               this.node_id = obj.node_id;
+               const msg: number = obj.msg;
+               const msg_hu_conv: ChannelUpdate = new ChannelUpdate(null, msg);
+                       msg_hu_conv.ptrs_to.add(this);
+               this.msg = msg_hu_conv;
+       }
+}
 export class HandleError extends MessageSendEvent {
        public node_id: Uint8Array;
        public action: ErrorAction;