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

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

                case 10: {
                    Name = input.ReadString();
                    break;
                }

                case 18: {
                    if (version_ == null)
                    {
                        version_ = new global::Google.Protobuf.WellKnownTypes.Int64Value();
                    }
                    input.ReadMessage(version_);
                    break;
                }

                case 26: {
                    SignatureName = input.ReadString();
                    break;
                }
                }
            }
        }
 public void MergeFrom(ModelSpec other)
 {
     if (other == null)
     {
         return;
     }
     if (other.Name.Length != 0)
     {
         Name = other.Name;
     }
     if (other.version_ != null)
     {
         if (version_ == null)
         {
             version_ = new global::Google.Protobuf.WellKnownTypes.Int64Value();
         }
         Version.MergeFrom(other.Version);
     }
     if (other.SignatureName.Length != 0)
     {
         SignatureName = other.SignatureName;
     }
 }