/// <summary>
        /// Returns true if VariableListLinks instances are equal
        /// </summary>
        /// <param name="other">Instance of VariableListLinks to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(VariableListLinks other)
        {
            if (other is null)
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     HttpNsAdobeComAdobecloudRelEnvironment == other.HttpNsAdobeComAdobecloudRelEnvironment ||
                     HttpNsAdobeComAdobecloudRelEnvironment != null &&
                     HttpNsAdobeComAdobecloudRelEnvironment.Equals(other.HttpNsAdobeComAdobecloudRelEnvironment)
                     ) &&
                 (
                     HttpNsAdobeComAdobecloudRelProgram == other.HttpNsAdobeComAdobecloudRelProgram ||
                     HttpNsAdobeComAdobecloudRelProgram != null &&
                     HttpNsAdobeComAdobecloudRelProgram.Equals(other.HttpNsAdobeComAdobecloudRelProgram)
                 ) &&
                 (
                     Self == other.Self ||
                     Self != null &&
                     Self.Equals(other.Self)
                 ));
        }
 /// <summary>
 /// Gets the hash code
 /// </summary>
 /// <returns>Hash code</returns>
 public override int GetHashCode()
 {
     unchecked // Overflow is fine, just wrap
     {
         var hashCode = 41;
         // Suitable nullity checks etc, of course :)
         if (HttpNsAdobeComAdobecloudRelEnvironment != null)
         {
             hashCode = hashCode * 59 + HttpNsAdobeComAdobecloudRelEnvironment.GetHashCode();
         }
         if (HttpNsAdobeComAdobecloudRelProgram != null)
         {
             hashCode = hashCode * 59 + HttpNsAdobeComAdobecloudRelProgram.GetHashCode();
         }
         if (Self != null)
         {
             hashCode = hashCode * 59 + Self.GetHashCode();
         }
         return(hashCode);
     }
 }