UNPKG

maplestory-openapi

Version:

This JavaScript library enables the use of the MapleStory OpenAPI of Nexon.

23 lines (18 loc) 421 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var guild = require('../../../common/dto/guild/guild.js'); /** * Guild identifier information */ class GuildDto extends guild.GuildDto { /** * Guild identifier */ oguildId; constructor(obj) { super(); const { oguild_id } = obj; this.oguildId = oguild_id; } } exports.GuildDto = GuildDto;