/** * 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 AccountMetadataTransactionBodyDTO */ export interface AccountMetadataTransactionBodyDTO { /** * Address expressed in Base32 format. If the bit 0 of byte 0 is not set (like in 0x90), then it is a * regular address. Example: TAOXUJOTTW3W5XTBQMQEX3SQNA6MCUVGXLXR3TA. * Otherwise (e.g. 0x91) it represents a namespace id which starts at byte 1. Example: THBIMC3THGH5RUYAAAAAAAAAAAAAAAAAAAAAAAA * * @type {string} * @memberof AccountMetadataTransactionBodyDTO */ targetAddress: string; /** * Metadata key scoped to source, target and type expressed. * @type {string} * @memberof AccountMetadataTransactionBodyDTO */ scopedMetadataKey: string; /** * Change in value size in bytes. * @type {number} * @memberof AccountMetadataTransactionBodyDTO */ valueSizeDelta: number; /** * A number that allows uint 32 values. * @type {number} * @memberof AccountMetadataTransactionBodyDTO */ valueSize: number; /** * Metadata value. If embedded in a transaction, this is calculated as xor(previous-value, value). * @type {string} * @memberof AccountMetadataTransactionBodyDTO */ value: string; } /** * Check if a given object implements the AccountMetadataTransactionBodyDTO interface. */ export declare function instanceOfAccountMetadataTransactionBodyDTO(value: Record): value is AccountMetadataTransactionBodyDTO; export declare function AccountMetadataTransactionBodyDTOFromJSON(json: any): AccountMetadataTransactionBodyDTO; export declare function AccountMetadataTransactionBodyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountMetadataTransactionBodyDTO; export declare function AccountMetadataTransactionBodyDTOToJSON(json: any): AccountMetadataTransactionBodyDTO; export declare function AccountMetadataTransactionBodyDTOToJSONTyped(value?: AccountMetadataTransactionBodyDTO | null, ignoreDiscriminator?: boolean): any;