/** * 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 { ReceiptTypeEnum } from './ReceiptTypeEnum'; /** * Receipt stored when network currency mosaics were created due to inflation. * @export * @interface InflationReceiptDTO */ export interface InflationReceiptDTO { /** * Version of the receipt. * @type {number} * @memberof InflationReceiptDTO */ version: number; /** * * @type {ReceiptTypeEnum} * @memberof InflationReceiptDTO */ type: ReceiptTypeEnum; /** * Mosaic identifier. * @type {string} * @memberof InflationReceiptDTO */ mosaicId: string; /** * Absolute amount. An amount of 123456789 (absolute) for a mosaic with divisibility 6 means 123.456789 (relative). * @type {string} * @memberof InflationReceiptDTO */ amount: string; } /** * Check if a given object implements the InflationReceiptDTO interface. */ export declare function instanceOfInflationReceiptDTO(value: Record): value is InflationReceiptDTO; export declare function InflationReceiptDTOFromJSON(json: any): InflationReceiptDTO; export declare function InflationReceiptDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): InflationReceiptDTO; export declare function InflationReceiptDTOToJSON(json: any): InflationReceiptDTO; export declare function InflationReceiptDTOToJSONTyped(value?: InflationReceiptDTO | null, ignoreDiscriminator?: boolean): any;