| GET | /api/v1/logs/giftcode |
|---|
"use strict";
export class PagingRequest {
/** @param {{page?:number,limit?:number,offSet?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
page;
/** @type {number} */
limit;
/** @type {number} */
offSet;
}
export class LogGiftcodeRequest extends PagingRequest {
/** @param {{gameId?:number,fromDate?:string,toDate?:string,page?:number,limit?:number,offSet?:number}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
gameId;
/** @type {string} */
fromDate;
/** @type {string} */
toDate;
}
export class ReceivedGiftcodeResponse {
/** @param {{eventId?:number,eventName?:string,eventUrl?:string,description?:string,iconUrl?:string,label?:string,labelColor?:string,eventType?:number,code?:string,serverId?:string,characterId?:string,characterName?:string,startDate?:string,dueDate?:string,eventStartDate?:string,eventEndDate?:string,createdDate?:string,isUsed?:boolean}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
eventId;
/** @type {string} */
eventName;
/** @type {?string} */
eventUrl;
/** @type {?string} */
description;
/** @type {?string} */
iconUrl;
/** @type {?string} */
label;
/** @type {?string} */
labelColor;
/** @type {number} */
eventType;
/** @type {?string} */
code;
/** @type {?string} */
serverId;
/** @type {?string} */
characterId;
/** @type {?string} */
characterName;
/** @type {?string} */
startDate;
/** @type {?string} */
dueDate;
/** @type {?string} */
eventStartDate;
/** @type {?string} */
eventEndDate;
/** @type {string} */
createdDate;
/** @type {boolean} */
isUsed;
}
export class Pagination {
/** @param {{total?:number,pages?:number,offset?:number,limit?:number,currentPage?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
total;
/** @type {number} */
pages;
/** @type {number} */
offset;
/** @type {number} */
limit;
/** @type {number} */
currentPage;
}
/** @typedef T {any} */
export class PageResponse {
/** @param {{code?:number,message?:string,data?:ReceivedGiftcodeResponse[],pagination?:Pagination}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
code;
/** @type {string} */
message;
/** @type {ReceivedGiftcodeResponse[]} */
data = [];
/** @type {Pagination} */
pagination;
}
JavaScript LogGiftcodeRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /api/v1/logs/giftcode HTTP/1.1 Host: efun-id-api-sandbox.efun.vn Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
code: 0,
message: String,
data:
[
{
userId: 0,
userName: String,
vipPoint: 0,
orderId: String,
exportCode: String,
giftCode: String,
gameId: 0,
gameName: String,
serverId: 0,
serverName: String,
packageId: 0,
packageName: String,
characterId: String,
characterName: String,
payCode: 0,
payMsg: String,
ipAddress: String,
userAgent: String,
signature: String,
responseData: String,
id: 000000000000000000000000
}
]
}