google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
77 lines • 4.06 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UrlCollection = 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");
// @generated message type with reflection information, may provide speed optimized methods
class UrlCollection$Type extends runtime_5.MessageType {
constructor() {
super("google.ads.googleads.v11.common.UrlCollection", [
{ no: 5, name: "url_collection_id", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ },
{ no: 6, name: "final_urls", kind: "scalar", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
{ no: 7, name: "final_mobile_urls", kind: "scalar", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
{ no: 8, name: "tracking_url_template", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ }
]);
}
create(value) {
const message = { finalUrls: [], finalMobileUrls: [] };
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 /* optional string url_collection_id */ 5:
message.urlCollectionId = reader.string();
break;
case /* repeated string final_urls */ 6:
message.finalUrls.push(reader.string());
break;
case /* repeated string final_mobile_urls */ 7:
message.finalMobileUrls.push(reader.string());
break;
case /* optional string tracking_url_template */ 8:
message.trackingUrlTemplate = reader.string();
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) {
/* optional string url_collection_id = 5; */
if (message.urlCollectionId !== undefined)
writer.tag(5, runtime_1.WireType.LengthDelimited).string(message.urlCollectionId);
/* repeated string final_urls = 6; */
for (let i = 0; i < message.finalUrls.length; i++)
writer.tag(6, runtime_1.WireType.LengthDelimited).string(message.finalUrls[i]);
/* repeated string final_mobile_urls = 7; */
for (let i = 0; i < message.finalMobileUrls.length; i++)
writer.tag(7, runtime_1.WireType.LengthDelimited).string(message.finalMobileUrls[i]);
/* optional string tracking_url_template = 8; */
if (message.trackingUrlTemplate !== undefined)
writer.tag(8, runtime_1.WireType.LengthDelimited).string(message.trackingUrlTemplate);
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.common.UrlCollection
*/
exports.UrlCollection = new UrlCollection$Type();
//# sourceMappingURL=url_collection.js.map