// package: org.interledger.stream.proto // file: send_payment_request.proto /* tslint:disable */ /* eslint-disable */ import * as jspb from "google-protobuf"; export class SendPaymentRequest extends jspb.Message { getDestinationPaymentPointer(): string; setDestinationPaymentPointer(value: string): SendPaymentRequest; getAmount(): number; setAmount(value: number): SendPaymentRequest; getTimeoutSeconds(): number; setTimeoutSeconds(value: number): SendPaymentRequest; getAccountId(): string; setAccountId(value: string): SendPaymentRequest; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): SendPaymentRequest.AsObject; static toObject(includeInstance: boolean, msg: SendPaymentRequest): SendPaymentRequest.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: SendPaymentRequest, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): SendPaymentRequest; static deserializeBinaryFromReader(message: SendPaymentRequest, reader: jspb.BinaryReader): SendPaymentRequest; } export namespace SendPaymentRequest { export type AsObject = { destinationPaymentPointer: string, amount: number, timeoutSeconds: number, accountId: string, } }