sleeper-api-tsclient
Version:
Typescript client for the sleeper api
52 lines • 1.36 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserInLeague = void 0;
var UserInLeague = (function () {
function UserInLeague() {
}
UserInLeague.getAttributeTypeMap = function () {
return UserInLeague.attributeTypeMap;
};
UserInLeague.discriminator = undefined;
UserInLeague.attributeTypeMap = [
{
"name": "userId",
"baseName": "user_id",
"type": "string",
"format": ""
},
{
"name": "username",
"baseName": "username",
"type": "string",
"format": ""
},
{
"name": "displayName",
"baseName": "display_name",
"type": "string",
"format": ""
},
{
"name": "avatar",
"baseName": "avatar",
"type": "string",
"format": ""
},
{
"name": "metadata",
"baseName": "metadata",
"type": "UserInLeagueMetadata",
"format": ""
},
{
"name": "isOwner",
"baseName": "is_owner",
"type": "boolean",
"format": ""
}
];
return UserInLeague;
}());
exports.UserInLeague = UserInLeague;
//# sourceMappingURL=UserInLeague.js.map