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.
40 lines (30 loc) • 1.54 kB
TypeScript
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 VerificationToken extends jspb.Message {
getIdentifier(): string;
setIdentifier(value: string): VerificationToken;
getToken(): string;
setToken(value: string): VerificationToken;
getExpires(): google_protobuf_timestamp_pb.Timestamp | undefined;
setExpires(value?: google_protobuf_timestamp_pb.Timestamp): VerificationToken;
hasExpires(): boolean;
clearExpires(): VerificationToken;
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): VerificationToken;
hasCreatedAt(): boolean;
clearCreatedAt(): VerificationToken;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): VerificationToken.AsObject;
static toObject(includeInstance: boolean, msg: VerificationToken): VerificationToken.AsObject;
static serializeBinaryToWriter(message: VerificationToken, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): VerificationToken;
static deserializeBinaryFromReader(message: VerificationToken, reader: jspb.BinaryReader): VerificationToken;
}
export namespace VerificationToken {
export type AsObject = {
identifier: string,
token: string,
expires?: google_protobuf_timestamp_pb.Timestamp.AsObject,
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
}
}