@ondewo/csi-client-nodejs
Version:
ONDEWO Communication System Integration (CSI) Client library for Nodejs
31 lines (25 loc) • 1.05 kB
TypeScript
// package: google.protobuf
// file: google/protobuf/timestamp.proto
/* tslint:disable */
/* eslint-disable */
import * as jspb from "google-protobuf";
export class Timestamp extends jspb.Message {
getSeconds(): number;
setSeconds(value: number): Timestamp;
getNanos(): number;
setNanos(value: number): Timestamp;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): Timestamp.AsObject;
static toObject(includeInstance: boolean, msg: Timestamp): Timestamp.AsObject;
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
static serializeBinaryToWriter(message: Timestamp, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): Timestamp;
static deserializeBinaryFromReader(message: Timestamp, reader: jspb.BinaryReader): Timestamp;
}
export namespace Timestamp {
export type AsObject = {
seconds: number,
nanos: number,
}
}