/// <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 (Name != null)
         {
             hashCode = hashCode * 59 + Name.GetHashCode();
         }
         if (PartnershipHref != null)
         {
             hashCode = hashCode * 59 + PartnershipHref.GetHashCode();
         }
         if (PartnershipId != null)
         {
             hashCode = hashCode * 59 + PartnershipId.GetHashCode();
         }
         if (PartnershipName != null)
         {
             hashCode = hashCode * 59 + PartnershipName.GetHashCode();
         }
         return(hashCode);
     }
 }
        /// <summary>
        /// Returns true if RoleTypeRef instances are equal
        /// </summary>
        /// <param name="other">Instance of RoleTypeRef to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(RoleTypeRef other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     Name == other.Name ||
                     Name != null &&
                     Name.Equals(other.Name)
                     ) &&
                 (
                     PartnershipHref == other.PartnershipHref ||
                     PartnershipHref != null &&
                     PartnershipHref.Equals(other.PartnershipHref)
                 ) &&
                 (
                     PartnershipId == other.PartnershipId ||
                     PartnershipId != null &&
                     PartnershipId.Equals(other.PartnershipId)
                 ) &&
                 (
                     PartnershipName == other.PartnershipName ||
                     PartnershipName != null &&
                     PartnershipName.Equals(other.PartnershipName)
                 ));
        }