コード例 #1
0
        public void MergeFrom(Asset other)
        {
            if (other == null)
            {
                return;
            }
            if (other.ResourceName.Length != 0)
            {
                ResourceName = other.ResourceName;
            }
            if (other.id_ != null)
            {
                if (id_ == null || other.Id != 0L)
                {
                    Id = other.Id;
                }
            }
            if (other.name_ != null)
            {
                if (name_ == null || other.Name != "")
                {
                    Name = other.Name;
                }
            }
            if (other.Type != global::Google.Ads.GoogleAds.V2.Enums.AssetTypeEnum.Types.AssetType.Unspecified)
            {
                Type = other.Type;
            }
            switch (other.AssetDataCase)
            {
            case AssetDataOneofCase.YoutubeVideoAsset:
                if (YoutubeVideoAsset == null)
                {
                    YoutubeVideoAsset = new global::Google.Ads.GoogleAds.V2.Common.YoutubeVideoAsset();
                }
                YoutubeVideoAsset.MergeFrom(other.YoutubeVideoAsset);
                break;

            case AssetDataOneofCase.MediaBundleAsset:
                if (MediaBundleAsset == null)
                {
                    MediaBundleAsset = new global::Google.Ads.GoogleAds.V2.Common.MediaBundleAsset();
                }
                MediaBundleAsset.MergeFrom(other.MediaBundleAsset);
                break;

            case AssetDataOneofCase.ImageAsset:
                if (ImageAsset == null)
                {
                    ImageAsset = new global::Google.Ads.GoogleAds.V2.Common.ImageAsset();
                }
                ImageAsset.MergeFrom(other.ImageAsset);
                break;

            case AssetDataOneofCase.TextAsset:
                if (TextAsset == null)
                {
                    TextAsset = new global::Google.Ads.GoogleAds.V2.Common.TextAsset();
                }
                TextAsset.MergeFrom(other.TextAsset);
                break;
            }

            _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
        }