UNPKG

maplestory-openapi

Version:

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

23 lines (18 loc) 443 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var character = require('../../../common/dto/character/character.js'); /** * Character identifier information */ class CharacterDto extends character.CharacterDto { /** * Character identifier */ ocid; constructor(obj) { super(); const { ocid } = obj; this.ocid = ocid; } } exports.CharacterDto = CharacterDto;