google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
92 lines • 5.59 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustomerUserAccess = 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 access_role_1 = require("../enums/access_role");
// @generated message type with reflection information, may provide speed optimized methods
class CustomerUserAccess$Type extends runtime_5.MessageType {
constructor() {
super("google.ads.googleads.v11.resources.CustomerUserAccess", [
{ 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/CustomerUserAccess" } } },
{ no: 2, name: "user_id", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } },
{ no: 3, name: "email_address", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } },
{ no: 4, name: "access_role", kind: "enum", T: () => ["google.ads.googleads.v11.enums.AccessRoleEnum.AccessRole", access_role_1.AccessRoleEnum_AccessRole] },
{ no: 6, name: "access_creation_date_time", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } },
{ no: 7, name: "inviter_user_email_address", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } }
], { "google.api.resource": { type: "googleads.googleapis.com/CustomerUserAccess", pattern: ["customers/{customer_id}/customerUserAccesses/{user_id}"] } });
}
create(value) {
const message = { resourceName: "", userId: 0n, accessRole: 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 user_id */ 2:
message.userId = reader.int64().toBigInt();
break;
case /* optional string email_address */ 3:
message.emailAddress = reader.string();
break;
case /* google.ads.googleads.v11.enums.AccessRoleEnum.AccessRole access_role */ 4:
message.accessRole = reader.int32();
break;
case /* optional string access_creation_date_time */ 6:
message.accessCreationDateTime = reader.string();
break;
case /* optional string inviter_user_email_address */ 7:
message.inviterUserEmailAddress = 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) {
/* string resource_name = 1; */
if (message.resourceName !== "")
writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.resourceName);
/* int64 user_id = 2; */
if (message.userId !== 0n)
writer.tag(2, runtime_1.WireType.Varint).int64(message.userId);
/* optional string email_address = 3; */
if (message.emailAddress !== undefined)
writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.emailAddress);
/* google.ads.googleads.v11.enums.AccessRoleEnum.AccessRole access_role = 4; */
if (message.accessRole !== 0)
writer.tag(4, runtime_1.WireType.Varint).int32(message.accessRole);
/* optional string access_creation_date_time = 6; */
if (message.accessCreationDateTime !== undefined)
writer.tag(6, runtime_1.WireType.LengthDelimited).string(message.accessCreationDateTime);
/* optional string inviter_user_email_address = 7; */
if (message.inviterUserEmailAddress !== undefined)
writer.tag(7, runtime_1.WireType.LengthDelimited).string(message.inviterUserEmailAddress);
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.CustomerUserAccess
*/
exports.CustomerUserAccess = new CustomerUserAccess$Type();
//# sourceMappingURL=customer_user_access.js.map