/** * Radix Gateway API - Babylon * This API is exposed by the Babylon Radix Gateway to enable clients to efficiently query current and historic state on the RadixDLT ledger, and intelligently handle transaction submission. It is designed for use by wallets and explorers, and for light queries from front-end dApps. For exchange/asset integrations, back-end dApp integrations, or simple use cases, you should consider using the Core API on a Node. A Gateway is only needed for reading historic snapshots of ledger states or a more robust set-up. The Gateway API is implemented by the [Network Gateway](https://github.com/radixdlt/babylon-gateway), which is configured to read from [full node(s)](https://github.com/radixdlt/babylon-node) to extract and index data from the network. This document is an API reference documentation, visit [User Guide](https://docs.radixdlt.com/) to learn more about how to run a Gateway of your own. ## Migration guide Please see [the latest release notes](https://github.com/radixdlt/babylon-gateway/releases). ## Integration and forward compatibility guarantees All responses may have additional fields added at any release, so clients are advised to use JSON parsers which ignore unknown fields on JSON objects. When the Radix protocol is updated, new functionality may be added, and so discriminated unions returned by the API may need to be updated to have new variants added, corresponding to the updated data. Clients may need to update in advance to be able to handle these new variants when a protocol update comes out. On the very rare occasions we need to make breaking changes to the API, these will be warned in advance with deprecation notices on previous versions. These deprecation notices will include a safe migration path. Deprecation notes or breaking changes will be flagged clearly in release notes for new versions of the Gateway. The Gateway DB schema is not subject to any compatibility guarantees, and may be changed at any release. DB changes will be flagged in the release notes so clients doing custom DB integrations can prepare. * * The version of the OpenAPI document: v1.10.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TransactionDetailsOptIns */ export interface TransactionDetailsOptIns { /** * if set to `true`, raw transaction hex is returned. * @type {boolean} * @memberof TransactionDetailsOptIns */ raw_hex?: boolean; /** * if set to `true`, state changes inside receipt object are returned. * @type {boolean} * @memberof TransactionDetailsOptIns */ receipt_state_changes?: boolean; /** * if set to `true`, fee summary inside receipt object is returned. * @type {boolean} * @memberof TransactionDetailsOptIns */ receipt_fee_summary?: boolean; /** * if set to `true`, fee source inside receipt object is returned. * @type {boolean} * @memberof TransactionDetailsOptIns */ receipt_fee_source?: boolean; /** * if set to `true`, fee destination inside receipt object is returned. * @type {boolean} * @memberof TransactionDetailsOptIns */ receipt_fee_destination?: boolean; /** * if set to `true`, costing parameters inside receipt object is returned. * @type {boolean} * @memberof TransactionDetailsOptIns */ receipt_costing_parameters?: boolean; /** * if set to `true`, events inside receipt object is returned. Please use the `detailed_events` instead, as it provides an enriched model with context and additional data. * @type {boolean} * @memberof TransactionDetailsOptIns * @deprecated */ receipt_events?: boolean; /** * if set to `true`, detailed events object is returned. For more information please visit the [Detailed Events docs](#section/Detailed-Events-Explained). * @type {boolean} * @memberof TransactionDetailsOptIns */ detailed_events?: boolean; /** * (true by default) if set to `true`, transaction receipt output is returned. * @type {boolean} * @memberof TransactionDetailsOptIns */ receipt_output?: boolean; /** * if set to `true`, all affected global entities by given transaction are returned. * @type {boolean} * @memberof TransactionDetailsOptIns */ affected_global_entities?: boolean; /** * if set to `true`, manifest instructions for user transactions are returned. * @type {boolean} * @memberof TransactionDetailsOptIns */ manifest_instructions?: boolean; /** * if set to `true`, returns the fungible and non-fungible balance changes. **Warning!** This opt-in might be missing for recently committed transactions, in that case a `null` value will be returned. Retry the request until non-null value is returned. * @type {boolean} * @memberof TransactionDetailsOptIns */ balance_changes?: boolean; } /** * Check if a given object implements the TransactionDetailsOptIns interface. */ export declare function instanceOfTransactionDetailsOptIns(value: object): boolean; export declare function TransactionDetailsOptInsFromJSON(json: any): TransactionDetailsOptIns; export declare function TransactionDetailsOptInsFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionDetailsOptIns; export declare function TransactionDetailsOptInsToJSON(value?: TransactionDetailsOptIns | null): any;