/** * 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 { LockHashAlgorithmEnum } from './LockHashAlgorithmEnum'; /** * * @export * @interface SecretProofTransactionBodyDTO */ export interface SecretProofTransactionBodyDTO { /** * 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 SecretProofTransactionBodyDTO */ recipientAddress: string; /** * * @type {string} * @memberof SecretProofTransactionBodyDTO */ secret: string; /** * * @type {LockHashAlgorithmEnum} * @memberof SecretProofTransactionBodyDTO */ hashAlgorithm: LockHashAlgorithmEnum; /** * Original random set of bytes. * @type {string} * @memberof SecretProofTransactionBodyDTO */ proof: string; } /** * Check if a given object implements the SecretProofTransactionBodyDTO interface. */ export declare function instanceOfSecretProofTransactionBodyDTO(value: Record): value is SecretProofTransactionBodyDTO; export declare function SecretProofTransactionBodyDTOFromJSON(json: any): SecretProofTransactionBodyDTO; export declare function SecretProofTransactionBodyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecretProofTransactionBodyDTO; export declare function SecretProofTransactionBodyDTOToJSON(json: any): SecretProofTransactionBodyDTO; export declare function SecretProofTransactionBodyDTOToJSONTyped(value?: SecretProofTransactionBodyDTO | null, ignoreDiscriminator?: boolean): any;