PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/@hashgraph/sdk/lib/schedule

Просмотр файла: ScheduleInfo.d.ts

/**
 * Response when the client sends the node ScheduleGetInfoQuery.
 */
export default class ScheduleInfo {
    /**
     * @internal
     * @param {HashgraphProto.proto.IScheduleInfo} info
     * @returns {ScheduleInfo}
     */
    static _fromProtobuf(info: HashgraphProto.proto.IScheduleInfo): ScheduleInfo;
    /**
     * @private
     * @param {object} props
     * @param {ScheduleId} props.scheduleId;
     * @param {?AccountId} props.creatorAccountID;
     * @param {?AccountId} props.payerAccountID;
     * @param {?HashgraphProto.proto.ISchedulableTransactionBody} props.schedulableTransactionBody;
     * @param {?Key} props.adminKey
     * @param {?KeyList} props.signers;
     * @param {?string} props.scheduleMemo;
     * @param {?Timestamp} props.expirationTime;
     * @param {?Timestamp} props.executed;
     * @param {?Timestamp} props.deleted;
     * @param {?TransactionId} props.scheduledTransactionId;
     * @param {boolean} props.waitForExpiry;
     */
    private constructor();
    /**
     * @readonly
     */
    readonly scheduleId: ScheduleId;
    /**
     * @readonly
     */
    readonly creatorAccountId: AccountId | null;
    /**
     * @readonly
     */
    readonly payerAccountId: AccountId | null;
    /**
     * @readonly
     */
    readonly schedulableTransactionBody: HashgraphProto.proto.ISchedulableTransactionBody | null;
    /**
     * @readonly
     */
    readonly signers: KeyList | null;
    /**
     * @readonly
     */
    readonly scheduleMemo: string | null;
    /**
     * @readonly
     */
    readonly adminKey: Key | null;
    /**
     * @readonly
     */
    readonly expirationTime: Timestamp | null;
    /**
     * @readonly
     */
    readonly executed: Timestamp | null;
    /**
     * @readonly
     */
    readonly deleted: Timestamp | null;
    /**
     * @readonly
     */
    readonly scheduledTransactionId: TransactionId | null;
    /**
     *
     * @readonly
     */
    readonly waitForExpiry: boolean;
    /**
     * @returns {HashgraphProto.proto.IScheduleInfo}
     */
    _toProtobuf(): HashgraphProto.proto.IScheduleInfo;
    /**
     * @returns {Transaction}
     */
    get scheduledTransaction(): Transaction;
}
import ScheduleId from "./ScheduleId.js";
import AccountId from "../account/AccountId.js";
import * as HashgraphProto from "@hashgraph/proto";
import KeyList from "../KeyList.js";
import Key from "../Key.js";
import Timestamp from "../Timestamp.js";
import TransactionId from "../transaction/TransactionId.js";
declare const proto: typeof HashgraphProto.proto;
import Transaction from "../transaction/Transaction.js";
export {};

Выполнить команду


Для локальной разработки. Не используйте в интернете!