/// <summary>
        /// Compares two instances of this object.
        /// </summary>
        /// <param name="CSORoamingProviderId1">An charging station operator roaming provider identification.</param>
        /// <param name="CSORoamingProviderId2">Another charging station operator roaming provider identification.</param>
        /// <returns>true|false</returns>
        public static Boolean operator >(CSORoamingProvider_Id CSORoamingProviderId1, CSORoamingProvider_Id CSORoamingProviderId2)
        {
            if ((Object)CSORoamingProviderId1 == null)
            {
                throw new ArgumentNullException(nameof(CSORoamingProviderId1), "The given CSORoamingProviderId1 must not be null!");
            }

            return(CSORoamingProviderId1.CompareTo(CSORoamingProviderId2) > 0);
        }