UNPKG

google-ads-api-client

Version:

A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.

121 lines 7.27 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AssetGroup = void 0; const runtime_1 = require("@protobuf-ts/runtime"); const runtime_2 = require("@protobuf-ts/runtime"); const runtime_3 = require("@protobuf-ts/runtime"); const runtime_4 = require("@protobuf-ts/runtime"); const runtime_5 = require("@protobuf-ts/runtime"); const ad_strength_1 = require("../enums/ad_strength"); const asset_group_status_1 = require("../enums/asset_group_status"); // @generated message type with reflection information, may provide speed optimized methods class AssetGroup$Type extends runtime_5.MessageType { constructor() { super("google.ads.googleads.v11.resources.AssetGroup", [ { no: 1, name: "resource_name", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["IMMUTABLE"], "google.api.resource_reference": { type: "googleads.googleapis.com/AssetGroup" } } }, { no: 9, name: "id", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } }, { no: 2, name: "campaign", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["IMMUTABLE"], "google.api.resource_reference": { type: "googleads.googleapis.com/Campaign" } } }, { no: 3, name: "name", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["REQUIRED"] } }, { no: 4, name: "final_urls", kind: "scalar", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ }, { no: 5, name: "final_mobile_urls", kind: "scalar", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ }, { no: 6, name: "status", kind: "enum", T: () => ["google.ads.googleads.v11.enums.AssetGroupStatusEnum.AssetGroupStatus", asset_group_status_1.AssetGroupStatusEnum_AssetGroupStatus] }, { no: 7, name: "path1", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 8, name: "path2", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 10, name: "ad_strength", kind: "enum", T: () => ["google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength", ad_strength_1.AdStrengthEnum_AdStrength], options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } } ], { "google.api.resource": { type: "googleads.googleapis.com/AssetGroup", pattern: ["customers/{customer_id}/assetGroups/{asset_group_id}"] } }); } create(value) { const message = { resourceName: "", id: 0n, campaign: "", name: "", finalUrls: [], finalMobileUrls: [], status: 0, path1: "", path2: "", adStrength: 0 }; globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this }); if (value !== undefined) (0, runtime_3.reflectionMergePartial)(this, message, value); return message; } internalBinaryRead(reader, length, options, target) { let message = target ?? this.create(), end = reader.pos + length; while (reader.pos < end) { let [fieldNo, wireType] = reader.tag(); switch (fieldNo) { case /* string resource_name */ 1: message.resourceName = reader.string(); break; case /* int64 id */ 9: message.id = reader.int64().toBigInt(); break; case /* string campaign */ 2: message.campaign = reader.string(); break; case /* string name */ 3: message.name = reader.string(); break; case /* repeated string final_urls */ 4: message.finalUrls.push(reader.string()); break; case /* repeated string final_mobile_urls */ 5: message.finalMobileUrls.push(reader.string()); break; case /* google.ads.googleads.v11.enums.AssetGroupStatusEnum.AssetGroupStatus status */ 6: message.status = reader.int32(); break; case /* string path1 */ 7: message.path1 = reader.string(); break; case /* string path2 */ 8: message.path2 = reader.string(); break; case /* google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength ad_strength */ 10: message.adStrength = reader.int32(); break; default: let u = options.readUnknownField; if (u === "throw") throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); let d = reader.skip(wireType); if (u !== false) (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); } } return message; } internalBinaryWrite(message, writer, options) { /* string resource_name = 1; */ if (message.resourceName !== "") writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.resourceName); /* int64 id = 9; */ if (message.id !== 0n) writer.tag(9, runtime_1.WireType.Varint).int64(message.id); /* string campaign = 2; */ if (message.campaign !== "") writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.campaign); /* string name = 3; */ if (message.name !== "") writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.name); /* repeated string final_urls = 4; */ for (let i = 0; i < message.finalUrls.length; i++) writer.tag(4, runtime_1.WireType.LengthDelimited).string(message.finalUrls[i]); /* repeated string final_mobile_urls = 5; */ for (let i = 0; i < message.finalMobileUrls.length; i++) writer.tag(5, runtime_1.WireType.LengthDelimited).string(message.finalMobileUrls[i]); /* google.ads.googleads.v11.enums.AssetGroupStatusEnum.AssetGroupStatus status = 6; */ if (message.status !== 0) writer.tag(6, runtime_1.WireType.Varint).int32(message.status); /* string path1 = 7; */ if (message.path1 !== "") writer.tag(7, runtime_1.WireType.LengthDelimited).string(message.path1); /* string path2 = 8; */ if (message.path2 !== "") writer.tag(8, runtime_1.WireType.LengthDelimited).string(message.path2); /* google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength ad_strength = 10; */ if (message.adStrength !== 0) writer.tag(10, runtime_1.WireType.Varint).int32(message.adStrength); let u = options.writeUnknownFields; if (u !== false) (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); return writer; } } /** * @generated MessageType for protobuf message google.ads.googleads.v11.resources.AssetGroup */ exports.AssetGroup = new AssetGroup$Type(); //# sourceMappingURL=asset_group.js.map