/** * Catapult REST Endpoints * OpenAPI Specification of catapult-rest * * The version of the OpenAPI document: 1.0.4 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A transaction could be classified in the following groups: * * Unconfirmed: The transaction reached the P2P network. At this point, it is not guaranteed that the transaction will be included in a block. * * Confirmed: The transaction is included in a block. * * Partial: The transaction requires to be cosigned by other transaction participants in order to be included in a block. * * Failed: The transaction did not pass the network validation, and it was rejected. * * @export */ export declare const TransactionGroupEnum: { readonly Unconfirmed: "unconfirmed"; readonly Confirmed: "confirmed"; readonly Failed: "failed"; readonly Partial: "partial"; }; export declare type TransactionGroupEnum = typeof TransactionGroupEnum[keyof typeof TransactionGroupEnum]; export declare function instanceOfTransactionGroupEnum(value: any): boolean; export declare function TransactionGroupEnumFromJSON(json: any): TransactionGroupEnum; export declare function TransactionGroupEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionGroupEnum; export declare function TransactionGroupEnumToJSON(value?: TransactionGroupEnum | null): any; export declare function TransactionGroupEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): TransactionGroupEnum;