chore: release v0.12
This commit is contained in:
@@ -1063,6 +1063,42 @@ export namespace main {
|
||||
this.digital_default = source["digital_default"];
|
||||
}
|
||||
}
|
||||
export class ChatMessage {
|
||||
id: number;
|
||||
operator: string;
|
||||
station: string;
|
||||
message: string;
|
||||
created_at: string;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new ChatMessage(source);
|
||||
}
|
||||
|
||||
constructor(source: any = {}) {
|
||||
if ('string' === typeof source) source = JSON.parse(source);
|
||||
this.id = source["id"];
|
||||
this.operator = source["operator"];
|
||||
this.station = source["station"];
|
||||
this.message = source["message"];
|
||||
this.created_at = source["created_at"];
|
||||
}
|
||||
}
|
||||
export class ChatPresence {
|
||||
operator: string;
|
||||
station: string;
|
||||
ago_secs: number;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new ChatPresence(source);
|
||||
}
|
||||
|
||||
constructor(source: any = {}) {
|
||||
if ('string' === typeof source) source = JSON.parse(source);
|
||||
this.operator = source["operator"];
|
||||
this.station = source["station"];
|
||||
this.ago_secs = source["ago_secs"];
|
||||
}
|
||||
}
|
||||
export class ClublogCtyInfo {
|
||||
enabled: boolean;
|
||||
loaded: boolean;
|
||||
|
||||
Reference in New Issue
Block a user