/** * 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 EmbeddedAccountAddressRestrictionTransactionDTO */ export interface EmbeddedAccountAddressRestrictionTransactionDTO { /** * Public key. * @type {string} * @memberof EmbeddedAccountAddressRestrictionTransactionDTO */ signerPublicKey: string; /** * Entity version. * @type {number} * @memberof EmbeddedAccountAddressRestrictionTransactionDTO */ version: number; /** * * @type {NetworkTypeEnum} * @memberof EmbeddedAccountAddressRestrictionTransactionDTO */ network: NetworkTypeEnum; /** * * @type {number} * @memberof EmbeddedAccountAddressRestrictionTransactionDTO */ type: number; /** * * @type {AccountRestrictionFlagsEnum} * @memberof EmbeddedAccountAddressRestrictionTransactionDTO */ restrictionFlags: AccountRestrictionFlagsEnum; /** * Account restriction additions. * @type {Array} * @memberof EmbeddedAccountAddressRestrictionTransactionDTO */ restrictionAdditions: Array; /** * Account restriction deletions. * @type {Array} * @memberof EmbeddedAccountAddressRestrictionTransactionDTO */ restrictionDeletions: Array; } /** * Check if a given object implements the EmbeddedAccountAddressRestrictionTransactionDTO interface. */ export declare function instanceOfEmbeddedAccountAddressRestrictionTransactionDTO(value: Record): value is EmbeddedAccountAddressRestrictionTransactionDTO; export declare function EmbeddedAccountAddressRestrictionTransactionDTOFromJSON(json: any): EmbeddedAccountAddressRestrictionTransactionDTO; export declare function EmbeddedAccountAddressRestrictionTransactionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedAccountAddressRestrictionTransactionDTO; export declare function EmbeddedAccountAddressRestrictionTransactionDTOToJSON(json: any): EmbeddedAccountAddressRestrictionTransactionDTO; export declare function EmbeddedAccountAddressRestrictionTransactionDTOToJSONTyped(value?: EmbeddedAccountAddressRestrictionTransactionDTO | null, ignoreDiscriminator?: boolean): any;