/** * 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 { AccountRestrictionDTOValuesInner } from './AccountRestrictionDTOValuesInner'; import type { AccountRestrictionFlagsEnum } from './AccountRestrictionFlagsEnum'; /** * * @export * @interface AccountRestrictionDTO */ export interface AccountRestrictionDTO { /** * * @type {AccountRestrictionFlagsEnum} * @memberof AccountRestrictionDTO */ restrictionFlags: AccountRestrictionFlagsEnum; /** * Address, mosaic id, or transaction type to restrict. * @type {Array} * @memberof AccountRestrictionDTO */ values: Array; } /** * Check if a given object implements the AccountRestrictionDTO interface. */ export declare function instanceOfAccountRestrictionDTO(value: Record): value is AccountRestrictionDTO; export declare function AccountRestrictionDTOFromJSON(json: any): AccountRestrictionDTO; export declare function AccountRestrictionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountRestrictionDTO; export declare function AccountRestrictionDTOToJSON(json: any): AccountRestrictionDTO; export declare function AccountRestrictionDTOToJSONTyped(value?: AccountRestrictionDTO | null, ignoreDiscriminator?: boolean): any;