/** * 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'; /** * * @export * @interface EntityDTO */ export interface EntityDTO { /** * Public key. * @type {string} * @memberof EntityDTO */ signerPublicKey: string; /** * Entity version. * @type {number} * @memberof EntityDTO */ version: number; /** * * @type {NetworkTypeEnum} * @memberof EntityDTO */ network: NetworkTypeEnum; /** * * @type {number} * @memberof EntityDTO */ type: number; } /** * Check if a given object implements the EntityDTO interface. */ export declare function instanceOfEntityDTO(value: Record): value is EntityDTO; export declare function EntityDTOFromJSON(json: any): EntityDTO; export declare function EntityDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityDTO; export declare function EntityDTOToJSON(json: any): EntityDTO; export declare function EntityDTOToJSONTyped(value?: EntityDTO | null, ignoreDiscriminator?: boolean): any;