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.

38 lines (28 loc) 1.21 kB
import * as jspb from 'google-protobuf' import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb'; // proto import: "google/protobuf/timestamp.proto" export class Param extends jspb.Message { getParamKey(): string; setParamKey(value: string): Param; getParamValue(): string; setParamValue(value: string): Param; getDescription(): string; setDescription(value: string): Param; getUpdatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined; setUpdatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Param; hasUpdatedAt(): boolean; clearUpdatedAt(): Param; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): Param.AsObject; static toObject(includeInstance: boolean, msg: Param): Param.AsObject; static serializeBinaryToWriter(message: Param, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): Param; static deserializeBinaryFromReader(message: Param, reader: jspb.BinaryReader): Param; } export namespace Param { export type AsObject = { paramKey: string, paramValue: string, description: string, updatedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject, } }