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

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
                    break;

                case 10: {
                    if (profile_ == null)
                    {
                        profile_ = new global::Google.Cloud.Talent.V4Beta1.Profile();
                    }
                    input.ReadMessage(profile_);
                    break;
                }

                case 18: {
                    RawText = input.ReadString();
                    break;
                }
                }
            }
        }
 public void MergeFrom(ParseResumeResponse other)
 {
     if (other == null)
     {
         return;
     }
     if (other.profile_ != null)
     {
         if (profile_ == null)
         {
             profile_ = new global::Google.Cloud.Talent.V4Beta1.Profile();
         }
         Profile.MergeFrom(other.Profile);
     }
     if (other.RawText.Length != 0)
     {
         RawText = other.RawText;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }