/** * Radix Core API * This API is exposed by the Babylon Radix node to give clients access to the Radix Engine, Mempool and State in the node. The default configuration is intended for use by node-runners on a private network, and is not intended to be exposed publicly. Very heavy load may impact the node\'s function. The node exposes a configuration flag which allows disabling certain endpoints which may be problematic, but monitoring is advised. This configuration parameter is `api.core.flags.enable_unbounded_endpoints` / `RADIXDLT_CORE_API_FLAGS_ENABLE_UNBOUNDED_ENDPOINTS`. This API exposes queries against the node\'s current state (see `/lts/state/` or `/state/`), and streams of transaction history (under `/lts/stream/` or `/stream`). If you require queries against snapshots of historical ledger state, you may also wish to consider using the [Gateway API](https://docs-babylon.radixdlt.com/). ## Integration and forward compatibility guarantees Integrators (such as exchanges) are recommended to use the `/lts/` endpoints - they have been designed to be clear and simple for integrators wishing to create and monitor transactions involving fungible transfers to/from accounts. All endpoints under `/lts/` have high guarantees of forward compatibility in future node versions. We may add new fields, but existing fields will not be changed. Assuming the integrating code uses a permissive JSON parser which ignores unknown fields, any additions will not affect existing code. Other endpoints may be changed with new node versions carrying protocol-updates, although any breaking changes will be flagged clearly in the corresponding release notes. All responses may have additional fields added, so clients are advised to use JSON parsers which ignore unknown fields on JSON objects. * * The version of the OpenAPI document: v1.3.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { EntityReference } from './EntityReference'; import type { PrimaryRoleRecoveryAttempt } from './PrimaryRoleRecoveryAttempt'; import type { RecoveryRoleRecoveryAttempt } from './RecoveryRoleRecoveryAttempt'; /** * * @export * @interface AccessControllerFieldStateValue */ export interface AccessControllerFieldStateValue { /** * * @type {EntityReference} * @memberof AccessControllerFieldStateValue */ controlled_vault: EntityReference; /** * * @type {EntityReference} * @memberof AccessControllerFieldStateValue */ xrd_fee_vault?: EntityReference; /** * An integer between `0` and `2^32 - 1`, specifying the amount of time (in minutes) that * it takes for timed recovery to be done. When not present, then timed recovery can not be * performed through this access controller. * @type {number} * @memberof AccessControllerFieldStateValue */ timed_recovery_delay_minutes?: number; /** * The Bech32m-encoded human readable version of the resource address * @type {string} * @memberof AccessControllerFieldStateValue */ recovery_badge_resource_address: string; /** * Whether the primary role is currently locked. * @type {boolean} * @memberof AccessControllerFieldStateValue */ is_primary_role_locked: boolean; /** * * @type {PrimaryRoleRecoveryAttempt} * @memberof AccessControllerFieldStateValue */ primary_role_recovery_attempt?: PrimaryRoleRecoveryAttempt; /** * Whether the primary role badge withdraw is currently being attempted. * @type {boolean} * @memberof AccessControllerFieldStateValue */ has_primary_role_badge_withdraw_attempt: boolean; /** * * @type {RecoveryRoleRecoveryAttempt} * @memberof AccessControllerFieldStateValue */ recovery_role_recovery_attempt?: RecoveryRoleRecoveryAttempt; /** * Whether the recovery role badge withdraw is currently being attempted. * @type {boolean} * @memberof AccessControllerFieldStateValue */ has_recovery_role_badge_withdraw_attempt: boolean; } /** * Check if a given object implements the AccessControllerFieldStateValue interface. */ export declare function instanceOfAccessControllerFieldStateValue(value: object): boolean; export declare function AccessControllerFieldStateValueFromJSON(json: any): AccessControllerFieldStateValue; export declare function AccessControllerFieldStateValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccessControllerFieldStateValue; export declare function AccessControllerFieldStateValueToJSON(value?: AccessControllerFieldStateValue | null): any;