#pragma once namespace xrpl { namespace Resource { /** * Kind of consumer. * kindInbound: Inbound connection. * kindOutbound: Outbound connection. * kindUnlimited: Inbound connection with no resource limits, but could be * subjected to administrative restrictions, such as * use of some RPC commands like "stop". */ enum Kind { kindInbound, kindOutbound, kindUnlimited }; } // namespace Resource } // namespace xrpl