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

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

                case 8: {
                    status_ = (global::HOLMS.Types.Money.RPC.AccountSvcUpdateStatus)input.ReadEnum();
                    break;
                }

                case 18: {
                    if (account_ == null)
                    {
                        account_ = new global::HOLMS.Types.Money.Accounting.Account();
                    }
                    input.ReadMessage(account_);
                    break;
                }
                }
            }
        }
 public void MergeFrom(AccountSvcUpdateResponse other)
 {
     if (other == null)
     {
         return;
     }
     if (other.Status != 0)
     {
         Status = other.Status;
     }
     if (other.account_ != null)
     {
         if (account_ == null)
         {
             account_ = new global::HOLMS.Types.Money.Accounting.Account();
         }
         Account.MergeFrom(other.Account);
     }
 }
 public virtual global::System.Threading.Tasks.Task <global::HOLMS.Types.Money.RPC.AccountSvcUpdateResponse> Update(global::HOLMS.Types.Money.Accounting.Account request, ServerCallContext context)
 {
     throw new RpcException(new Status(StatusCode.Unimplemented, ""));
 }
 public virtual AsyncUnaryCall <global::HOLMS.Types.Money.RPC.AccountSvcDeleteResponse> DeleteAsync(global::HOLMS.Types.Money.Accounting.Account request, CallOptions options)
 {
     return(CallInvoker.AsyncUnaryCall(__Method_Delete, null, options, request));
 }
 public virtual AsyncUnaryCall <global::HOLMS.Types.Money.RPC.AccountSvcDeleteResponse> DeleteAsync(global::HOLMS.Types.Money.Accounting.Account request, Metadata headers = null, DateTime?deadline = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(DeleteAsync(request, new CallOptions(headers, deadline, cancellationToken)));
 }
 public virtual global::HOLMS.Types.Money.RPC.AccountSvcUpdateResponse Update(global::HOLMS.Types.Money.Accounting.Account request, CallOptions options)
 {
     return(CallInvoker.BlockingUnaryCall(__Method_Update, null, options, request));
 }
 public virtual global::HOLMS.Types.Money.RPC.AccountSvcCreateResponse Create(global::HOLMS.Types.Money.Accounting.Account request, Metadata headers = null, DateTime?deadline = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(Create(request, new CallOptions(headers, deadline, cancellationToken)));
 }