public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    input.SkipLastField();
                    break;

                case 10: {
                    if (tax_ == null)
                    {
                        tax_ = new global::HOLMS.Types.Folio.TaxFee();
                    }
                    input.ReadMessage(tax_);
                    break;
                }

                case 18: {
                    if (estimatedTaxAmount_ == null)
                    {
                        estimatedTaxAmount_ = new global::HOLMS.Types.Primitive.MonetaryAmount();
                    }
                    input.ReadMessage(estimatedTaxAmount_);
                    break;
                }
                }
            }
        }
 public void MergeFrom(TaxAssessmentEstimate other)
 {
     if (other == null)
     {
         return;
     }
     if (other.tax_ != null)
     {
         if (tax_ == null)
         {
             tax_ = new global::HOLMS.Types.Folio.TaxFee();
         }
         Tax.MergeFrom(other.Tax);
     }
     if (other.estimatedTaxAmount_ != null)
     {
         if (estimatedTaxAmount_ == null)
         {
             estimatedTaxAmount_ = new global::HOLMS.Types.Primitive.MonetaryAmount();
         }
         EstimatedTaxAmount.MergeFrom(other.EstimatedTaxAmount);
     }
 }
 public virtual global::System.Threading.Tasks.Task <global::HOLMS.Types.Primitive.ServerActionConfirmation> Delete(global::HOLMS.Types.Folio.TaxFee request, grpc::ServerCallContext context)
 {
     throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
 }
 public virtual grpc::AsyncUnaryCall <global::HOLMS.Types.Primitive.ServerActionConfirmation> DeleteAsync(global::HOLMS.Types.Folio.TaxFee request, grpc::CallOptions options)
 {
     return(CallInvoker.AsyncUnaryCall(__Method_Delete, null, options, request));
 }
 public virtual grpc::AsyncUnaryCall <global::HOLMS.Types.Primitive.ServerActionConfirmation> DeleteAsync(global::HOLMS.Types.Folio.TaxFee request, grpc::Metadata headers = null, DateTime?deadline = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(DeleteAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken)));
 }
 public virtual grpc::AsyncUnaryCall <global::HOLMS.Types.Folio.TaxFee> UpdateAsync(global::HOLMS.Types.Folio.TaxFee request, grpc::CallOptions options)
 {
     return(CallInvoker.AsyncUnaryCall(__Method_Update, null, options, request));
 }
 public virtual global::HOLMS.Types.Folio.TaxFee Update(global::HOLMS.Types.Folio.TaxFee request, grpc::CallOptions options)
 {
     return(CallInvoker.BlockingUnaryCall(__Method_Update, null, options, request));
 }
 public virtual global::HOLMS.Types.Folio.TaxFee Update(global::HOLMS.Types.Folio.TaxFee request, grpc::Metadata headers = null, DateTime?deadline = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(Update(request, new grpc::CallOptions(headers, deadline, cancellationToken)));
 }