2.2.2.20 AUX_PERF_ACCOUNTINFO
        /// <summary>
        /// Compose buffer for AUX_PERF_ACCOUNTINFO, refer to the definition of AUX_PERF_ACCOUNTINFO
        /// </summary>
        /// <param name="reserved">Value for Reserved field in AUX_PERF_ACCOUNTINFO</param>
        /// <returns>The byte array contains the AUX_PERF_ACCOUNTINFO</returns>
        public static byte[] Compose_AUX_PERF_ACCOUNTINFO(int reserved)
        {
            AUX_PERF_ACCOUNTINFO aux_perf_accountinfo = new AUX_PERF_ACCOUNTINFO
            {
                Reserved = (short)reserved
            };

            return(aux_perf_accountinfo.Serialize());
        }
 /// <summary>
 /// Compose buffer for AUX_PERF_ACCOUNTINFO, refer to the definition of AUX_PERF_ACCOUNTINFO 
 /// </summary>
 /// <param name="reserved">Value for Reserved field in AUX_PERF_ACCOUNTINFO</param>
 /// <returns>The byte array contains the AUX_PERF_ACCOUNTINFO</returns>
 public static byte[] Compose_AUX_PERF_ACCOUNTINFO(int reserved)
 {
     AUX_PERF_ACCOUNTINFO aux_perf_accountinfo = new AUX_PERF_ACCOUNTINFO
     {
         Reserved = (short)reserved
     };
     return aux_perf_accountinfo.Serialize();
 }