public void MergeFrom(NotPresentPaymentCard other) { if (other == null) { return; } if (other.CardNumber.Length != 0) { CardNumber = other.CardNumber; } if (other.Cvc.Length != 0) { Cvc = other.Cvc; } if (other.ExpiryMonth != 0) { ExpiryMonth = other.ExpiryMonth; } if (other.FourDigitExpiryYear != 0) { FourDigitExpiryYear = other.FourDigitExpiryYear; } if (other.Zipcode.Length != 0) { Zipcode = other.Zipcode; } if (other.CardholderName.Length != 0) { CardholderName = other.CardholderName; } if (other.IsVirtualCard != false) { IsVirtualCard = other.IsVirtualCard; } if (other.virtualCardLimit_ != null) { if (virtualCardLimit_ == null) { virtualCardLimit_ = new global::HOLMS.Types.Primitive.MonetaryAmount(); } VirtualCardLimit.MergeFrom(other.VirtualCardLimit); } if (other.virtualCardAvailableOn_ != null) { if (virtualCardAvailableOn_ == null) { virtualCardAvailableOn_ = new global::HOLMS.Types.Primitive.PbLocalDate(); } VirtualCardAvailableOn.MergeFrom(other.VirtualCardAvailableOn); } if (other.virtualCardExpiresOn_ != null) { if (virtualCardExpiresOn_ == null) { virtualCardExpiresOn_ = new global::HOLMS.Types.Primitive.PbLocalDate(); } VirtualCardExpiresOn.MergeFrom(other.VirtualCardExpiresOn); } }
public override int GetHashCode() { int hash = 1; if (id_ != null) { hash ^= Id.GetHashCode(); } if (MaskedPan.Length != 0) { hash ^= MaskedPan.GetHashCode(); } if (expirationDate_ != null) { hash ^= ExpirationDate.GetHashCode(); } if (CardHolderName.Length != 0) { hash ^= CardHolderName.GetHashCode(); } if (Brand != 0) { hash ^= Brand.GetHashCode(); } if (IsVirtualCard != false) { hash ^= IsVirtualCard.GetHashCode(); } if (virtualCardUnusedBalance_ != null) { hash ^= VirtualCardUnusedBalance.GetHashCode(); } if (virtualCardAvailableOn_ != null) { hash ^= VirtualCardAvailableOn.GetHashCode(); } if (virtualCardExpiresOn_ != null) { hash ^= VirtualCardExpiresOn.GetHashCode(); } if (CardType != 0) { hash ^= CardType.GetHashCode(); } return(hash); }
public override int GetHashCode() { int hash = 1; if (CardNumber.Length != 0) { hash ^= CardNumber.GetHashCode(); } if (Cvc.Length != 0) { hash ^= Cvc.GetHashCode(); } if (ExpiryMonth != 0) { hash ^= ExpiryMonth.GetHashCode(); } if (FourDigitExpiryYear != 0) { hash ^= FourDigitExpiryYear.GetHashCode(); } if (Zipcode.Length != 0) { hash ^= Zipcode.GetHashCode(); } if (CardholderName.Length != 0) { hash ^= CardholderName.GetHashCode(); } if (IsVirtualCard != false) { hash ^= IsVirtualCard.GetHashCode(); } if (virtualCardLimit_ != null) { hash ^= VirtualCardLimit.GetHashCode(); } if (virtualCardAvailableOn_ != null) { hash ^= VirtualCardAvailableOn.GetHashCode(); } if (virtualCardExpiresOn_ != null) { hash ^= VirtualCardExpiresOn.GetHashCode(); } return(hash); }
public void MergeFrom(GuestPaymentCard other) { if (other == null) { return; } if (other.id_ != null) { if (id_ == null) { id_ = new global::HOLMS.Types.Money.Cards.GuestPaymentCardIndicator(); } Id.MergeFrom(other.Id); } if (other.MaskedPan.Length != 0) { MaskedPan = other.MaskedPan; } if (other.expirationDate_ != null) { if (expirationDate_ == null) { expirationDate_ = new global::HOLMS.Types.Primitive.PbLocalDate(); } ExpirationDate.MergeFrom(other.ExpirationDate); } if (other.CardHolderName.Length != 0) { CardHolderName = other.CardHolderName; } if (other.Brand != 0) { Brand = other.Brand; } if (other.IsVirtualCard != false) { IsVirtualCard = other.IsVirtualCard; } if (other.virtualCardUnusedBalance_ != null) { if (virtualCardUnusedBalance_ == null) { virtualCardUnusedBalance_ = new global::HOLMS.Types.Primitive.MonetaryAmount(); } VirtualCardUnusedBalance.MergeFrom(other.VirtualCardUnusedBalance); } if (other.virtualCardAvailableOn_ != null) { if (virtualCardAvailableOn_ == null) { virtualCardAvailableOn_ = new global::HOLMS.Types.Primitive.PbLocalDate(); } VirtualCardAvailableOn.MergeFrom(other.VirtualCardAvailableOn); } if (other.virtualCardExpiresOn_ != null) { if (virtualCardExpiresOn_ == null) { virtualCardExpiresOn_ = new global::HOLMS.Types.Primitive.PbLocalDate(); } VirtualCardExpiresOn.MergeFrom(other.VirtualCardExpiresOn); } }