/** * 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 AccountMosaicRestrictionTransactionBodyDTO */ export interface AccountMosaicRestrictionTransactionBodyDTO { /** * * @type {AccountRestrictionFlagsEnum} * @memberof AccountMosaicRestrictionTransactionBodyDTO */ restrictionFlags: AccountRestrictionFlagsEnum; /** * Account restriction additions. * @type {Array} * @memberof AccountMosaicRestrictionTransactionBodyDTO */ restrictionAdditions: Array; /** * Account restriction deletions. * @type {Array} * @memberof AccountMosaicRestrictionTransactionBodyDTO */ restrictionDeletions: Array; } /** * Check if a given object implements the AccountMosaicRestrictionTransactionBodyDTO interface. */ export declare function instanceOfAccountMosaicRestrictionTransactionBodyDTO(value: Record): value is AccountMosaicRestrictionTransactionBodyDTO; export declare function AccountMosaicRestrictionTransactionBodyDTOFromJSON(json: any): AccountMosaicRestrictionTransactionBodyDTO; export declare function AccountMosaicRestrictionTransactionBodyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountMosaicRestrictionTransactionBodyDTO; export declare function AccountMosaicRestrictionTransactionBodyDTOToJSON(json: any): AccountMosaicRestrictionTransactionBodyDTO; export declare function AccountMosaicRestrictionTransactionBodyDTOToJSONTyped(value?: AccountMosaicRestrictionTransactionBodyDTO | null, ignoreDiscriminator?: boolean): any;