/** * 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. */ /** * * @export * @interface VerifiableEntityDTO */ export interface VerifiableEntityDTO { /** * Entity's signature generated by the signer. * @type {string} * @memberof VerifiableEntityDTO */ signature: string; } /** * Check if a given object implements the VerifiableEntityDTO interface. */ export declare function instanceOfVerifiableEntityDTO(value: Record): value is VerifiableEntityDTO; export declare function VerifiableEntityDTOFromJSON(json: any): VerifiableEntityDTO; export declare function VerifiableEntityDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerifiableEntityDTO; export declare function VerifiableEntityDTOToJSON(json: any): VerifiableEntityDTO; export declare function VerifiableEntityDTOToJSONTyped(value?: VerifiableEntityDTO | null, ignoreDiscriminator?: boolean): any;