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.

78 lines 4.8 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CampaignSharedSet = 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 campaign_shared_set_status_1 = require("../enums/campaign_shared_set_status"); // @generated message type with reflection information, may provide speed optimized methods class CampaignSharedSet$Type extends runtime_5.MessageType { constructor() { super("google.ads.googleads.v11.resources.CampaignSharedSet", [ { 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/CampaignSharedSet" } } }, { no: 5, name: "campaign", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["IMMUTABLE"], "google.api.resource_reference": { type: "googleads.googleapis.com/Campaign" } } }, { no: 6, name: "shared_set", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["IMMUTABLE"], "google.api.resource_reference": { type: "googleads.googleapis.com/SharedSet" } } }, { no: 2, name: "status", kind: "enum", T: () => ["google.ads.googleads.v11.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus", campaign_shared_set_status_1.CampaignSharedSetStatusEnum_CampaignSharedSetStatus], options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } } ], { "google.api.resource": { type: "googleads.googleapis.com/CampaignSharedSet", pattern: ["customers/{customer_id}/campaignSharedSets/{campaign_id}~{shared_set_id}"] } }); } create(value) { const message = { resourceName: "", status: 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 /* optional string campaign */ 5: message.campaign = reader.string(); break; case /* optional string shared_set */ 6: message.sharedSet = reader.string(); break; case /* google.ads.googleads.v11.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus status */ 2: message.status = 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); /* optional string campaign = 5; */ if (message.campaign !== undefined) writer.tag(5, runtime_1.WireType.LengthDelimited).string(message.campaign); /* optional string shared_set = 6; */ if (message.sharedSet !== undefined) writer.tag(6, runtime_1.WireType.LengthDelimited).string(message.sharedSet); /* google.ads.googleads.v11.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus status = 2; */ if (message.status !== 0) writer.tag(2, runtime_1.WireType.Varint).int32(message.status); 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.CampaignSharedSet */ exports.CampaignSharedSet = new CampaignSharedSet$Type(); //# sourceMappingURL=campaign_shared_set.js.map