# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct SCPQuorumSet # { # uint32 threshold; # PublicKey validators<>; # SCPQuorumSet innerSets<>; # }; # # =========================================================================== module Stellar class SCPQuorumSet < XDR::Struct attribute :threshold, Uint32 attribute :validators, XDR::VarArray[PublicKey] attribute :inner_sets, XDR::VarArray[SCPQuorumSet] end end