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

            return
                ((
                     Type == other.Type ||
                     Type != null &&
                     Type.Equals(other.Type)
                     ) &&
                 (
                     Fees == other.Fees ||
                     Fees != null &&
                     Fees.Equals(other.Fees)
                 ) &&
                 (
                     InterestRate == other.InterestRate ||
                     InterestRate != null &&
                     InterestRate.Equals(other.InterestRate)
                 ) &&
                 (
                     RequiredWarranties == other.RequiredWarranties ||
                     RequiredWarranties != null &&
                     RequiredWarranties.SequenceEqual(other.RequiredWarranties)
                 ) &&
                 (
                     TermsConditions == other.TermsConditions ||
                     TermsConditions != null &&
                     TermsConditions.Equals(other.TermsConditions)
                 ));
        }