/** * Endaoment API * The official Endaoment API & SDK endpoints * * The version of the OpenAPI document: 0.0.1 * * * 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 TransactionDto */ export interface TransactionDto { /** * The address this transaction will be sent to * @type {string} * @memberof TransactionDto */ to: string; /** * The data this transaction will send to the destination contract * @type {string} * @memberof TransactionDto */ data: string; /** * The ETH value, if any, this transaction will send along * @type {string} * @memberof TransactionDto */ value: string; } /** * Check if a given object implements the TransactionDto interface. */ export declare function instanceOfTransactionDto(value: object): boolean; export declare function TransactionDtoFromJSON(json: any): TransactionDto; export declare function TransactionDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionDto; export declare function TransactionDtoToJSON(value?: TransactionDto | null): any;