generated/stellar/claimable_balance_entry/ext.rb in stellar-base-0.26.0 vs generated/stellar/claimable_balance_entry/ext.rb in stellar-base-0.27.0
- old
+ new
@@ -7,18 +7,22 @@
#
# union switch (int v)
# {
# case 0:
# void;
+# case 1:
+# ClaimableBalanceEntryExtensionV1 v1;
# }
#
# ===========================================================================
module Stellar
class ClaimableBalanceEntry
class Ext < XDR::Union
switch_on XDR::Int, :v
switch 0
+ switch 1, :v1
+ attribute :v1, ClaimableBalanceEntryExtensionV1
end
end
end