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.

98 lines 6.09 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentsAccount = 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 PaymentsAccount$Type extends runtime_5.MessageType { constructor() { super("google.ads.googleads.v11.resources.PaymentsAccount", [ { no: 1, name: "resource_name", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"], "google.api.resource_reference": { type: "googleads.googleapis.com/PaymentsAccount" } } }, { no: 8, name: "payments_account_id", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } }, { no: 9, name: "name", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } }, { no: 10, name: "currency_code", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } }, { no: 11, name: "payments_profile_id", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } }, { no: 12, name: "secondary_payments_profile_id", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"] } }, { no: 13, name: "paying_manager_customer", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/, options: { "google.api.field_behavior": ["OUTPUT_ONLY"], "google.api.resource_reference": { type: "googleads.googleapis.com/Customer" } } } ], { "google.api.resource": { type: "googleads.googleapis.com/PaymentsAccount", pattern: ["customers/{customer_id}/paymentsAccounts/{payments_account_id}"] } }); } create(value) { const message = { resourceName: "" }; 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 payments_account_id */ 8: message.paymentsAccountId = reader.string(); break; case /* optional string name */ 9: message.name = reader.string(); break; case /* optional string currency_code */ 10: message.currencyCode = reader.string(); break; case /* optional string payments_profile_id */ 11: message.paymentsProfileId = reader.string(); break; case /* optional string secondary_payments_profile_id */ 12: message.secondaryPaymentsProfileId = reader.string(); break; case /* optional string paying_manager_customer */ 13: message.payingManagerCustomer = 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); /* optional string payments_account_id = 8; */ if (message.paymentsAccountId !== undefined) writer.tag(8, runtime_1.WireType.LengthDelimited).string(message.paymentsAccountId); /* optional string name = 9; */ if (message.name !== undefined) writer.tag(9, runtime_1.WireType.LengthDelimited).string(message.name); /* optional string currency_code = 10; */ if (message.currencyCode !== undefined) writer.tag(10, runtime_1.WireType.LengthDelimited).string(message.currencyCode); /* optional string payments_profile_id = 11; */ if (message.paymentsProfileId !== undefined) writer.tag(11, runtime_1.WireType.LengthDelimited).string(message.paymentsProfileId); /* optional string secondary_payments_profile_id = 12; */ if (message.secondaryPaymentsProfileId !== undefined) writer.tag(12, runtime_1.WireType.LengthDelimited).string(message.secondaryPaymentsProfileId); /* optional string paying_manager_customer = 13; */ if (message.payingManagerCustomer !== undefined) writer.tag(13, runtime_1.WireType.LengthDelimited).string(message.payingManagerCustomer); 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.PaymentsAccount */ exports.PaymentsAccount = new PaymentsAccount$Type(); //# sourceMappingURL=payments_account.js.map