/// <summary>
        /// Sets the global trade item number.
        /// </summary>
        /// <param name="gtin">The gtin.</param>
        /// <returns></returns>
        public virtual GeneralInformationComponent SetGTIN(string gtin)
        {
            GTINElement.SetValue(gtin);

            return(this);
        }
 /// <summary>
 /// Gets the global trade item number.
 /// </summary>
 /// <returns></returns>
 public virtual string GetGTIN()
 {
     return(GTINElement.GetValue <string>());
 }