/** * 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 { AccountRestrictionFlagsEnum } from './AccountRestrictionFlagsEnum'; /** * * @export * @interface AccountAddressRestrictionTransactionBodyDTO */ export interface AccountAddressRestrictionTransactionBodyDTO { /** * * @type {AccountRestrictionFlagsEnum} * @memberof AccountAddressRestrictionTransactionBodyDTO */ restrictionFlags: AccountRestrictionFlagsEnum; /** * Account restriction additions. * @type {Array} * @memberof AccountAddressRestrictionTransactionBodyDTO */ restrictionAdditions: Array; /** * Account restriction deletions. * @type {Array} * @memberof AccountAddressRestrictionTransactionBodyDTO */ restrictionDeletions: Array; } /** * Check if a given object implements the AccountAddressRestrictionTransactionBodyDTO interface. */ export declare function instanceOfAccountAddressRestrictionTransactionBodyDTO(value: Record): value is AccountAddressRestrictionTransactionBodyDTO; export declare function AccountAddressRestrictionTransactionBodyDTOFromJSON(json: any): AccountAddressRestrictionTransactionBodyDTO; export declare function AccountAddressRestrictionTransactionBodyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountAddressRestrictionTransactionBodyDTO; export declare function AccountAddressRestrictionTransactionBodyDTOToJSON(json: any): AccountAddressRestrictionTransactionBodyDTO; export declare function AccountAddressRestrictionTransactionBodyDTOToJSONTyped(value?: AccountAddressRestrictionTransactionBodyDTO | null, ignoreDiscriminator?: boolean): any;