echofi-client
Version:
A comprehensive TypeScript/JavaScript client library for EchoFi services with automatic gRPC-Web code generation, unified service access, and real-time WebSocket communication.
47 lines (34 loc) • 1.21 kB
TypeScript
import * as jspb from 'google-protobuf'
export class PointBoost extends jspb.Message {
getBoostId(): number;
setBoostId(value: number): PointBoost;
getUserId(): string;
setUserId(value: string): PointBoost;
getBoostRate(): number;
setBoostRate(value: number): PointBoost;
getStartTime(): number;
setStartTime(value: number): PointBoost;
getEndTime(): number;
setEndTime(value: number): PointBoost;
getBoostReason(): string;
setBoostReason(value: string): PointBoost;
getIsActive(): boolean;
setIsActive(value: boolean): PointBoost;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): PointBoost.AsObject;
static toObject(includeInstance: boolean, msg: PointBoost): PointBoost.AsObject;
static serializeBinaryToWriter(message: PointBoost, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): PointBoost;
static deserializeBinaryFromReader(message: PointBoost, reader: jspb.BinaryReader): PointBoost;
}
export namespace PointBoost {
export type AsObject = {
boostId: number,
userId: string,
boostRate: number,
startTime: number,
endTime: number,
boostReason: string,
isActive: boolean,
}
}