#29 - GuideAdvertisementReadMessageComposer added

This commit is contained in:
oobjectt 2022-12-26 18:07:26 +01:00
parent e70d9cc804
commit 9cfd71f8a2
4 changed files with 25 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -423,6 +423,7 @@ export class OutgoingHeader
public static GUIDE_SESSION_REPORT = 3969;
public static GUIDE_SESSION_REQUESTER_CANCELS = 291;
public static GUIDE_SESSION_RESOLVED = 887;
public static GUIDE_ADVERTISEMENT_READ = 2455;
public static POST_QUIZ_ANSWERS = 3720;
public static SEARCH_FAQS = 2031;
public static POLL_ANSWER = 3505;

View File

@ -0,0 +1,21 @@
import { IMessageComposer } from '../../../../../api';
export class GuideAdvertisementReadMessageComposer implements IMessageComposer<ConstructorParameters<typeof GuideAdvertisementReadMessageComposer>>
{
private _data: ConstructorParameters<typeof GuideAdvertisementReadMessageComposer>;
constructor()
{
this._data = [];
}
public getMessageArray()
{
return this._data;
}
public dispose(): void
{
return;
}
}

View File

@ -1 +1,2 @@
export * from './GuideAdvertisementReadMessageComposer';
export * from './TalentTrackComposer';