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.

64 lines 3.26 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FinalAppUrl = 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 app_url_operating_system_type_1 = require("../enums/app_url_operating_system_type"); // @generated message type with reflection information, may provide speed optimized methods class FinalAppUrl$Type extends runtime_5.MessageType { constructor() { super("google.ads.googleads.v11.common.FinalAppUrl", [ { no: 1, name: "os_type", kind: "enum", T: () => ["google.ads.googleads.v11.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType", app_url_operating_system_type_1.AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType] }, { no: 3, name: "url", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ } ]); } create(value) { const message = { osType: 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 /* google.ads.googleads.v11.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType os_type */ 1: message.osType = reader.int32(); break; case /* optional string url */ 3: message.url = 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) { /* google.ads.googleads.v11.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType os_type = 1; */ if (message.osType !== 0) writer.tag(1, runtime_1.WireType.Varint).int32(message.osType); /* optional string url = 3; */ if (message.url !== undefined) writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.url); 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.FinalAppUrl */ exports.FinalAppUrl = new FinalAppUrl$Type(); //# sourceMappingURL=final_app_url.js.map