/** * 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 { MosaicSupplyChangeActionEnum } from './MosaicSupplyChangeActionEnum'; /** * * @export * @interface EmbeddedMosaicSupplyChangeTransactionDTO */ export interface EmbeddedMosaicSupplyChangeTransactionDTO { /** * Public key. * @type {string} * @memberof EmbeddedMosaicSupplyChangeTransactionDTO */ signerPublicKey: string; /** * Entity version. * @type {number} * @memberof EmbeddedMosaicSupplyChangeTransactionDTO */ version: number; /** * * @type {NetworkTypeEnum} * @memberof EmbeddedMosaicSupplyChangeTransactionDTO */ network: NetworkTypeEnum; /** * * @type {number} * @memberof EmbeddedMosaicSupplyChangeTransactionDTO */ type: number; /** * Mosaic identifier. If the most significant bit of byte 0 is set, a namespaceId (alias) * is used instead of the real mosaic identifier. * * @type {string} * @memberof EmbeddedMosaicSupplyChangeTransactionDTO */ mosaicId: string; /** * Absolute amount. An amount of 123456789 (absolute) for a mosaic with divisibility 6 means 123.456789 (relative). * @type {string} * @memberof EmbeddedMosaicSupplyChangeTransactionDTO */ delta: string; /** * * @type {MosaicSupplyChangeActionEnum} * @memberof EmbeddedMosaicSupplyChangeTransactionDTO */ action: MosaicSupplyChangeActionEnum; } /** * Check if a given object implements the EmbeddedMosaicSupplyChangeTransactionDTO interface. */ export declare function instanceOfEmbeddedMosaicSupplyChangeTransactionDTO(value: Record): value is EmbeddedMosaicSupplyChangeTransactionDTO; export declare function EmbeddedMosaicSupplyChangeTransactionDTOFromJSON(json: any): EmbeddedMosaicSupplyChangeTransactionDTO; export declare function EmbeddedMosaicSupplyChangeTransactionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedMosaicSupplyChangeTransactionDTO; export declare function EmbeddedMosaicSupplyChangeTransactionDTOToJSON(json: any): EmbeddedMosaicSupplyChangeTransactionDTO; export declare function EmbeddedMosaicSupplyChangeTransactionDTOToJSONTyped(value?: EmbeddedMosaicSupplyChangeTransactionDTO | null, ignoreDiscriminator?: boolean): any;