/** * 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 { NetworkTypeEnum } from './NetworkTypeEnum'; import type { AccountRestrictionFlagsEnum } from './AccountRestrictionFlagsEnum'; /** * * @export * @interface EmbeddedAccountMosaicRestrictionTransactionDTO */ export interface EmbeddedAccountMosaicRestrictionTransactionDTO { /** * Public key. * @type {string} * @memberof EmbeddedAccountMosaicRestrictionTransactionDTO */ signerPublicKey: string; /** * Entity version. * @type {number} * @memberof EmbeddedAccountMosaicRestrictionTransactionDTO */ version: number; /** * * @type {NetworkTypeEnum} * @memberof EmbeddedAccountMosaicRestrictionTransactionDTO */ network: NetworkTypeEnum; /** * * @type {number} * @memberof EmbeddedAccountMosaicRestrictionTransactionDTO */ type: number; /** * * @type {AccountRestrictionFlagsEnum} * @memberof EmbeddedAccountMosaicRestrictionTransactionDTO */ restrictionFlags: AccountRestrictionFlagsEnum; /** * Account restriction additions. * @type {Array} * @memberof EmbeddedAccountMosaicRestrictionTransactionDTO */ restrictionAdditions: Array; /** * Account restriction deletions. * @type {Array} * @memberof EmbeddedAccountMosaicRestrictionTransactionDTO */ restrictionDeletions: Array; } /** * Check if a given object implements the EmbeddedAccountMosaicRestrictionTransactionDTO interface. */ export declare function instanceOfEmbeddedAccountMosaicRestrictionTransactionDTO(value: Record): value is EmbeddedAccountMosaicRestrictionTransactionDTO; export declare function EmbeddedAccountMosaicRestrictionTransactionDTOFromJSON(json: any): EmbeddedAccountMosaicRestrictionTransactionDTO; export declare function EmbeddedAccountMosaicRestrictionTransactionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedAccountMosaicRestrictionTransactionDTO; export declare function EmbeddedAccountMosaicRestrictionTransactionDTOToJSON(json: any): EmbeddedAccountMosaicRestrictionTransactionDTO; export declare function EmbeddedAccountMosaicRestrictionTransactionDTOToJSONTyped(value?: EmbeddedAccountMosaicRestrictionTransactionDTO | null, ignoreDiscriminator?: boolean): any;