/** * 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. */ import type { AccountRestrictionDTO } from './AccountRestrictionDTO'; /** * * @export * @interface AccountRestrictionsDTO */ export interface AccountRestrictionsDTO { /** * The version of the state * @type {number} * @memberof AccountRestrictionsDTO */ version: number; /** * Address encoded using a 32-character set. * @type {string} * @memberof AccountRestrictionsDTO */ address: string; /** * * @type {Array} * @memberof AccountRestrictionsDTO */ restrictions: Array; } /** * Check if a given object implements the AccountRestrictionsDTO interface. */ export declare function instanceOfAccountRestrictionsDTO(value: Record): value is AccountRestrictionsDTO; export declare function AccountRestrictionsDTOFromJSON(json: any): AccountRestrictionsDTO; export declare function AccountRestrictionsDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountRestrictionsDTO; export declare function AccountRestrictionsDTOToJSON(json: any): AccountRestrictionsDTO; export declare function AccountRestrictionsDTOToJSONTyped(value?: AccountRestrictionsDTO | null, ignoreDiscriminator?: boolean): any;