google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
137 lines • 8.71 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Experiment = 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 async_action_status_1 = require("../enums/async_action_status");
const metric_goal_1 = require("../common/metric_goal");
const experiment_status_1 = require("../enums/experiment_status");
const experiment_type_1 = require("../enums/experiment_type");
// @generated message type with reflection information, may provide speed optimized methods
class Experiment$Type extends runtime_5.MessageType {
constructor() {
super("google.ads.googleads.v11.resources.Experiment", [
{ 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/Experiment" } } },
{ no: 9, name: "experiment_id", kind: "scalar", opt: true, T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } },
{ no: 10, name: "name", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["REQUIRED"] } },
{ no: 11, name: "description", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 12, name: "suffix", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 13, name: "type", kind: "enum", T: () => ["google.ads.googleads.v11.enums.ExperimentTypeEnum.ExperimentType", experiment_type_1.ExperimentTypeEnum_ExperimentType] },
{ no: 14, name: "status", kind: "enum", T: () => ["google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus", experiment_status_1.ExperimentStatusEnum_ExperimentStatus] },
{ no: 15, name: "start_date", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ },
{ no: 16, name: "end_date", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ },
{ no: 17, name: "goals", kind: "message", repeat: 1 /*RepeatType.PACKED*/, T: () => metric_goal_1.MetricGoal },
{ no: 18, name: "long_running_operation", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } },
{ no: 19, name: "promote_status", kind: "enum", T: () => ["google.ads.googleads.v11.enums.AsyncActionStatusEnum.AsyncActionStatus", async_action_status_1.AsyncActionStatusEnum_AsyncActionStatus], options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } }
], { "google.api.resource": { type: "googleads.googleapis.com/Experiment", pattern: ["customers/{customer_id}/experiments/{trial_id}"] } });
}
create(value) {
const message = { resourceName: "", name: "", description: "", suffix: "", type: 0, status: 0, goals: [], promoteStatus: 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 int64 experiment_id */ 9:
message.experimentId = reader.int64().toBigInt();
break;
case /* string name */ 10:
message.name = reader.string();
break;
case /* string description */ 11:
message.description = reader.string();
break;
case /* string suffix */ 12:
message.suffix = reader.string();
break;
case /* google.ads.googleads.v11.enums.ExperimentTypeEnum.ExperimentType type */ 13:
message.type = reader.int32();
break;
case /* google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus status */ 14:
message.status = reader.int32();
break;
case /* optional string start_date */ 15:
message.startDate = reader.string();
break;
case /* optional string end_date */ 16:
message.endDate = reader.string();
break;
case /* repeated google.ads.googleads.v11.common.MetricGoal goals */ 17:
message.goals.push(metric_goal_1.MetricGoal.internalBinaryRead(reader, reader.uint32(), options));
break;
case /* optional string long_running_operation */ 18:
message.longRunningOperation = reader.string();
break;
case /* google.ads.googleads.v11.enums.AsyncActionStatusEnum.AsyncActionStatus promote_status */ 19:
message.promoteStatus = 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 int64 experiment_id = 9; */
if (message.experimentId !== undefined)
writer.tag(9, runtime_1.WireType.Varint).int64(message.experimentId);
/* string name = 10; */
if (message.name !== "")
writer.tag(10, runtime_1.WireType.LengthDelimited).string(message.name);
/* string description = 11; */
if (message.description !== "")
writer.tag(11, runtime_1.WireType.LengthDelimited).string(message.description);
/* string suffix = 12; */
if (message.suffix !== "")
writer.tag(12, runtime_1.WireType.LengthDelimited).string(message.suffix);
/* google.ads.googleads.v11.enums.ExperimentTypeEnum.ExperimentType type = 13; */
if (message.type !== 0)
writer.tag(13, runtime_1.WireType.Varint).int32(message.type);
/* google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus status = 14; */
if (message.status !== 0)
writer.tag(14, runtime_1.WireType.Varint).int32(message.status);
/* optional string start_date = 15; */
if (message.startDate !== undefined)
writer.tag(15, runtime_1.WireType.LengthDelimited).string(message.startDate);
/* optional string end_date = 16; */
if (message.endDate !== undefined)
writer.tag(16, runtime_1.WireType.LengthDelimited).string(message.endDate);
/* repeated google.ads.googleads.v11.common.MetricGoal goals = 17; */
for (let i = 0; i < message.goals.length; i++)
metric_goal_1.MetricGoal.internalBinaryWrite(message.goals[i], writer.tag(17, runtime_1.WireType.LengthDelimited).fork(), options).join();
/* optional string long_running_operation = 18; */
if (message.longRunningOperation !== undefined)
writer.tag(18, runtime_1.WireType.LengthDelimited).string(message.longRunningOperation);
/* google.ads.googleads.v11.enums.AsyncActionStatusEnum.AsyncActionStatus promote_status = 19; */
if (message.promoteStatus !== 0)
writer.tag(19, runtime_1.WireType.Varint).int32(message.promoteStatus);
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.Experiment
*/
exports.Experiment = new Experiment$Type();
//# sourceMappingURL=experiment.js.map