UNPKG

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.

39 lines (28 loc) 1.02 kB
import * as jspb from 'google-protobuf' export class UserPoints extends jspb.Message { getUserId(): string; setUserId(value: string): UserPoints; getPointRate(): number; setPointRate(value: number): UserPoints; getPoint(): number; setPoint(value: number): UserPoints; getUpdatedAt(): number; setUpdatedAt(value: number): UserPoints; getBoostRate(): number; setBoostRate(value: number): UserPoints; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): UserPoints.AsObject; static toObject(includeInstance: boolean, msg: UserPoints): UserPoints.AsObject; static serializeBinaryToWriter(message: UserPoints, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): UserPoints; static deserializeBinaryFromReader(message: UserPoints, reader: jspb.BinaryReader): UserPoints; } export namespace UserPoints { export type AsObject = { userId: string, pointRate: number, point: number, updatedAt: number, boostRate: number, } }