2022-08-18 03:39:55 +00:00

456 lines
13 KiB
JavaScript

// source: models/api/vendor.proto
/**
* @fileoverview
* @enhanceable
* @suppress {missingRequire} reports error on implicit type usages.
* @suppress {messageConventions} JS Compiler reports an error if a variable or
* field starts with 'MSG_' and isn't a translatable message.
* @public
*/
// GENERATED CODE -- DO NOT EDIT!
/* eslint-disable */
// @ts-nocheck
var jspb = require("google-protobuf");
var goog = jspb;
var global = function () {
return this || window || global || self || Function("return this")();
}.call(null);
goog.exportSymbol("proto.bet.beteran.api.vendor.Vendor", null, global);
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.bet.beteran.api.vendor.Vendor = function (opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
goog.inherits(proto.bet.beteran.api.vendor.Vendor, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.bet.beteran.api.vendor.Vendor.displayName =
"proto.bet.beteran.api.vendor.Vendor";
}
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.toObject = function (
opt_includeInstance
) {
return proto.bet.beteran.api.vendor.Vendor.toObject(
opt_includeInstance,
this
);
};
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.bet.beteran.api.vendor.Vendor} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.bet.beteran.api.vendor.Vendor.toObject = function (
includeInstance,
msg
) {
var f,
obj = {
id: jspb.Message.getFieldWithDefault(msg, 1, 0),
companyId: jspb.Message.getFieldWithDefault(msg, 2, 0),
vendorId: jspb.Message.getFieldWithDefault(msg, 3, 0),
key: jspb.Message.getFieldWithDefault(msg, 4, ""),
name: jspb.Message.getFieldWithDefault(msg, 5, ""),
category: jspb.Message.getFieldWithDefault(msg, 6, ""),
maxBetCasino: jspb.Message.getFieldWithDefault(msg, 7, 0),
maxBetSlot: jspb.Message.getFieldWithDefault(msg, 8, 0),
isEnable: jspb.Message.getFieldWithDefault(msg, 9, ""),
betCount: jspb.Message.getFieldWithDefault(msg, 10, 0),
createdAt: jspb.Message.getFieldWithDefault(msg, 11, 0),
updatedAt: jspb.Message.getFieldWithDefault(msg, 12, 0),
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.bet.beteran.api.vendor.Vendor}
*/
proto.bet.beteran.api.vendor.Vendor.deserializeBinary = function (bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.bet.beteran.api.vendor.Vendor();
return proto.bet.beteran.api.vendor.Vendor.deserializeBinaryFromReader(
msg,
reader
);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.bet.beteran.api.vendor.Vendor} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.bet.beteran.api.vendor.Vendor}
*/
proto.bet.beteran.api.vendor.Vendor.deserializeBinaryFromReader = function (
msg,
reader
) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {number} */ (reader.readUint64());
msg.setId(value);
break;
case 2:
var value = /** @type {number} */ (reader.readUint64());
msg.setCompanyId(value);
break;
case 3:
var value = /** @type {number} */ (reader.readUint64());
msg.setVendorId(value);
break;
case 4:
var value = /** @type {string} */ (reader.readString());
msg.setKey(value);
break;
case 5:
var value = /** @type {string} */ (reader.readString());
msg.setName(value);
break;
case 6:
var value = /** @type {string} */ (reader.readString());
msg.setCategory(value);
break;
case 7:
var value = /** @type {number} */ (reader.readUint64());
msg.setMaxBetCasino(value);
break;
case 8:
var value = /** @type {number} */ (reader.readUint64());
msg.setMaxBetSlot(value);
break;
case 9:
var value = /** @type {string} */ (reader.readString());
msg.setIsEnable(value);
break;
case 10:
var value = /** @type {number} */ (reader.readUint64());
msg.setBetCount(value);
break;
case 11:
var value = /** @type {number} */ (reader.readUint64());
msg.setCreatedAt(value);
break;
case 12:
var value = /** @type {number} */ (reader.readUint64());
msg.setUpdatedAt(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.serializeBinary = function () {
var writer = new jspb.BinaryWriter();
proto.bet.beteran.api.vendor.Vendor.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.bet.beteran.api.vendor.Vendor} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.bet.beteran.api.vendor.Vendor.serializeBinaryToWriter = function (
message,
writer
) {
var f = undefined;
f = message.getId();
if (f !== 0) {
writer.writeUint64(1, f);
}
f = message.getCompanyId();
if (f !== 0) {
writer.writeUint64(2, f);
}
f = message.getVendorId();
if (f !== 0) {
writer.writeUint64(3, f);
}
f = message.getKey();
if (f.length > 0) {
writer.writeString(4, f);
}
f = message.getName();
if (f.length > 0) {
writer.writeString(5, f);
}
f = message.getCategory();
if (f.length > 0) {
writer.writeString(6, f);
}
f = message.getMaxBetCasino();
if (f !== 0) {
writer.writeUint64(7, f);
}
f = message.getMaxBetSlot();
if (f !== 0) {
writer.writeUint64(8, f);
}
f = message.getIsEnable();
if (f.length > 0) {
writer.writeString(9, f);
}
f = message.getBetCount();
if (f !== 0) {
writer.writeUint64(10, f);
}
f = message.getCreatedAt();
if (f !== 0) {
writer.writeUint64(11, f);
}
f = message.getUpdatedAt();
if (f !== 0) {
writer.writeUint64(12, f);
}
};
/**
* optional uint64 id = 1;
* @return {number}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.getId = function () {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
};
/**
* @param {number} value
* @return {!proto.bet.beteran.api.vendor.Vendor} returns this
*/
proto.bet.beteran.api.vendor.Vendor.prototype.setId = function (value) {
return jspb.Message.setProto3IntField(this, 1, value);
};
/**
* optional uint64 company_id = 2;
* @return {number}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.getCompanyId = function () {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
};
/**
* @param {number} value
* @return {!proto.bet.beteran.api.vendor.Vendor} returns this
*/
proto.bet.beteran.api.vendor.Vendor.prototype.setCompanyId = function (value) {
return jspb.Message.setProto3IntField(this, 2, value);
};
/**
* optional uint64 vendor_id = 3;
* @return {number}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.getVendorId = function () {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
};
/**
* @param {number} value
* @return {!proto.bet.beteran.api.vendor.Vendor} returns this
*/
proto.bet.beteran.api.vendor.Vendor.prototype.setVendorId = function (value) {
return jspb.Message.setProto3IntField(this, 3, value);
};
/**
* optional string key = 4;
* @return {string}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.getKey = function () {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
};
/**
* @param {string} value
* @return {!proto.bet.beteran.api.vendor.Vendor} returns this
*/
proto.bet.beteran.api.vendor.Vendor.prototype.setKey = function (value) {
return jspb.Message.setProto3StringField(this, 4, value);
};
/**
* optional string name = 5;
* @return {string}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.getName = function () {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
};
/**
* @param {string} value
* @return {!proto.bet.beteran.api.vendor.Vendor} returns this
*/
proto.bet.beteran.api.vendor.Vendor.prototype.setName = function (value) {
return jspb.Message.setProto3StringField(this, 5, value);
};
/**
* optional string category = 6;
* @return {string}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.getCategory = function () {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
};
/**
* @param {string} value
* @return {!proto.bet.beteran.api.vendor.Vendor} returns this
*/
proto.bet.beteran.api.vendor.Vendor.prototype.setCategory = function (value) {
return jspb.Message.setProto3StringField(this, 6, value);
};
/**
* optional uint64 max_bet_casino = 7;
* @return {number}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.getMaxBetCasino = function () {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
};
/**
* @param {number} value
* @return {!proto.bet.beteran.api.vendor.Vendor} returns this
*/
proto.bet.beteran.api.vendor.Vendor.prototype.setMaxBetCasino = function (
value
) {
return jspb.Message.setProto3IntField(this, 7, value);
};
/**
* optional uint64 max_bet_slot = 8;
* @return {number}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.getMaxBetSlot = function () {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
};
/**
* @param {number} value
* @return {!proto.bet.beteran.api.vendor.Vendor} returns this
*/
proto.bet.beteran.api.vendor.Vendor.prototype.setMaxBetSlot = function (value) {
return jspb.Message.setProto3IntField(this, 8, value);
};
/**
* optional string is_enable = 9;
* @return {string}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.getIsEnable = function () {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
};
/**
* @param {string} value
* @return {!proto.bet.beteran.api.vendor.Vendor} returns this
*/
proto.bet.beteran.api.vendor.Vendor.prototype.setIsEnable = function (value) {
return jspb.Message.setProto3StringField(this, 9, value);
};
/**
* optional uint64 bet_count = 10;
* @return {number}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.getBetCount = function () {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 10, 0));
};
/**
* @param {number} value
* @return {!proto.bet.beteran.api.vendor.Vendor} returns this
*/
proto.bet.beteran.api.vendor.Vendor.prototype.setBetCount = function (value) {
return jspb.Message.setProto3IntField(this, 10, value);
};
/**
* optional uint64 created_at = 11;
* @return {number}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.getCreatedAt = function () {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 11, 0));
};
/**
* @param {number} value
* @return {!proto.bet.beteran.api.vendor.Vendor} returns this
*/
proto.bet.beteran.api.vendor.Vendor.prototype.setCreatedAt = function (value) {
return jspb.Message.setProto3IntField(this, 11, value);
};
/**
* optional uint64 updated_at = 12;
* @return {number}
*/
proto.bet.beteran.api.vendor.Vendor.prototype.getUpdatedAt = function () {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
};
/**
* @param {number} value
* @return {!proto.bet.beteran.api.vendor.Vendor} returns this
*/
proto.bet.beteran.api.vendor.Vendor.prototype.setUpdatedAt = function (value) {
return jspb.Message.setProto3IntField(this, 12, value);
};
goog.object.extend(exports, proto.bet.beteran.api.vendor);