457 lines
14 KiB
JavaScript

// source: models/member_game_setting.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.member_game_setting.MemberGameSetting",
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.member_game_setting.MemberGameSetting = function (opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
goog.inherits(
proto.bet.beteran.member_game_setting.MemberGameSetting,
jspb.Message
);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.displayName =
"proto.bet.beteran.member_game_setting.MemberGameSetting";
}
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.member_game_setting.MemberGameSetting.prototype.toObject =
function (opt_includeInstance) {
return proto.bet.beteran.member_game_setting.MemberGameSetting.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.member_game_setting.MemberGameSetting} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.toObject = function (
includeInstance,
msg
) {
var f,
obj = {
id: jspb.Message.getFieldWithDefault(msg, 1, ""),
memberId: jspb.Message.getFieldWithDefault(msg, 2, ""),
canBetCasino: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
canBetSlot: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
canBetPowerball: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
canBetPowerladder: jspb.Message.getBooleanFieldWithDefault(
msg,
6,
false
),
canBetEos: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
canBetBogglepowerball: jspb.Message.getBooleanFieldWithDefault(
msg,
8,
false
),
createdAt: jspb.Message.getFieldWithDefault(msg, 9, 0),
updatedAt: jspb.Message.getFieldWithDefault(msg, 10, 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.member_game_setting.MemberGameSetting}
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.deserializeBinary =
function (bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.bet.beteran.member_game_setting.MemberGameSetting();
return proto.bet.beteran.member_game_setting.MemberGameSetting.deserializeBinaryFromReader(
msg,
reader
);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.bet.beteran.member_game_setting.MemberGameSetting} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.bet.beteran.member_game_setting.MemberGameSetting}
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.deserializeBinaryFromReader =
function (msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {string} */ (reader.readString());
msg.setId(value);
break;
case 2:
var value = /** @type {string} */ (reader.readString());
msg.setMemberId(value);
break;
case 3:
var value = /** @type {boolean} */ (reader.readBool());
msg.setCanBetCasino(value);
break;
case 4:
var value = /** @type {boolean} */ (reader.readBool());
msg.setCanBetSlot(value);
break;
case 5:
var value = /** @type {boolean} */ (reader.readBool());
msg.setCanBetPowerball(value);
break;
case 6:
var value = /** @type {boolean} */ (reader.readBool());
msg.setCanBetPowerladder(value);
break;
case 7:
var value = /** @type {boolean} */ (reader.readBool());
msg.setCanBetEos(value);
break;
case 8:
var value = /** @type {boolean} */ (reader.readBool());
msg.setCanBetBogglepowerball(value);
break;
case 9:
var value = /** @type {number} */ (reader.readUint64());
msg.setCreatedAt(value);
break;
case 10:
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.member_game_setting.MemberGameSetting.prototype.serializeBinary =
function () {
var writer = new jspb.BinaryWriter();
proto.bet.beteran.member_game_setting.MemberGameSetting.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.member_game_setting.MemberGameSetting} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.serializeBinaryToWriter =
function (message, writer) {
var f = undefined;
f = message.getId();
if (f.length > 0) {
writer.writeString(1, f);
}
f = message.getMemberId();
if (f.length > 0) {
writer.writeString(2, f);
}
f = message.getCanBetCasino();
if (f) {
writer.writeBool(3, f);
}
f = message.getCanBetSlot();
if (f) {
writer.writeBool(4, f);
}
f = message.getCanBetPowerball();
if (f) {
writer.writeBool(5, f);
}
f = message.getCanBetPowerladder();
if (f) {
writer.writeBool(6, f);
}
f = message.getCanBetEos();
if (f) {
writer.writeBool(7, f);
}
f = message.getCanBetBogglepowerball();
if (f) {
writer.writeBool(8, f);
}
f = message.getCreatedAt();
if (f !== 0) {
writer.writeUint64(9, f);
}
f = message.getUpdatedAt();
if (f !== 0) {
writer.writeUint64(10, f);
}
};
/**
* optional string id = 1;
* @return {string}
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.getId =
function () {
return /** @type {string} */ (
jspb.Message.getFieldWithDefault(this, 1, "")
);
};
/**
* @param {string} value
* @return {!proto.bet.beteran.member_game_setting.MemberGameSetting} returns this
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.setId =
function (value) {
return jspb.Message.setProto3StringField(this, 1, value);
};
/**
* optional string member_id = 2;
* @return {string}
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.getMemberId =
function () {
return /** @type {string} */ (
jspb.Message.getFieldWithDefault(this, 2, "")
);
};
/**
* @param {string} value
* @return {!proto.bet.beteran.member_game_setting.MemberGameSetting} returns this
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.setMemberId =
function (value) {
return jspb.Message.setProto3StringField(this, 2, value);
};
/**
* optional bool can_bet_casino = 3;
* @return {boolean}
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.getCanBetCasino =
function () {
return /** @type {boolean} */ (
jspb.Message.getBooleanFieldWithDefault(this, 3, false)
);
};
/**
* @param {boolean} value
* @return {!proto.bet.beteran.member_game_setting.MemberGameSetting} returns this
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.setCanBetCasino =
function (value) {
return jspb.Message.setProto3BooleanField(this, 3, value);
};
/**
* optional bool can_bet_slot = 4;
* @return {boolean}
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.getCanBetSlot =
function () {
return /** @type {boolean} */ (
jspb.Message.getBooleanFieldWithDefault(this, 4, false)
);
};
/**
* @param {boolean} value
* @return {!proto.bet.beteran.member_game_setting.MemberGameSetting} returns this
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.setCanBetSlot =
function (value) {
return jspb.Message.setProto3BooleanField(this, 4, value);
};
/**
* optional bool can_bet_powerball = 5;
* @return {boolean}
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.getCanBetPowerball =
function () {
return /** @type {boolean} */ (
jspb.Message.getBooleanFieldWithDefault(this, 5, false)
);
};
/**
* @param {boolean} value
* @return {!proto.bet.beteran.member_game_setting.MemberGameSetting} returns this
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.setCanBetPowerball =
function (value) {
return jspb.Message.setProto3BooleanField(this, 5, value);
};
/**
* optional bool can_bet_powerladder = 6;
* @return {boolean}
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.getCanBetPowerladder =
function () {
return /** @type {boolean} */ (
jspb.Message.getBooleanFieldWithDefault(this, 6, false)
);
};
/**
* @param {boolean} value
* @return {!proto.bet.beteran.member_game_setting.MemberGameSetting} returns this
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.setCanBetPowerladder =
function (value) {
return jspb.Message.setProto3BooleanField(this, 6, value);
};
/**
* optional bool can_bet_eos = 7;
* @return {boolean}
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.getCanBetEos =
function () {
return /** @type {boolean} */ (
jspb.Message.getBooleanFieldWithDefault(this, 7, false)
);
};
/**
* @param {boolean} value
* @return {!proto.bet.beteran.member_game_setting.MemberGameSetting} returns this
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.setCanBetEos =
function (value) {
return jspb.Message.setProto3BooleanField(this, 7, value);
};
/**
* optional bool can_bet_bogglepowerball = 8;
* @return {boolean}
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.getCanBetBogglepowerball =
function () {
return /** @type {boolean} */ (
jspb.Message.getBooleanFieldWithDefault(this, 8, false)
);
};
/**
* @param {boolean} value
* @return {!proto.bet.beteran.member_game_setting.MemberGameSetting} returns this
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.setCanBetBogglepowerball =
function (value) {
return jspb.Message.setProto3BooleanField(this, 8, value);
};
/**
* optional uint64 created_at = 9;
* @return {number}
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.getCreatedAt =
function () {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
};
/**
* @param {number} value
* @return {!proto.bet.beteran.member_game_setting.MemberGameSetting} returns this
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.setCreatedAt =
function (value) {
return jspb.Message.setProto3IntField(this, 9, value);
};
/**
* optional uint64 updated_at = 10;
* @return {number}
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.getUpdatedAt =
function () {
return /** @type {number} */ (
jspb.Message.getFieldWithDefault(this, 10, 0)
);
};
/**
* @param {number} value
* @return {!proto.bet.beteran.member_game_setting.MemberGameSetting} returns this
*/
proto.bet.beteran.member_game_setting.MemberGameSetting.prototype.setUpdatedAt =
function (value) {
return jspb.Message.setProto3IntField(this, 10, value);
};
goog.object.extend(exports, proto.bet.beteran.member_game_setting);