/** * 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 TransactionSdkDto */ export interface TransactionSdkDto { /** * The address this transaction will be sent to * @type {string} * @memberof TransactionSdkDto */ to: string; /** * The data this transaction will send to the destination contract * @type {string} * @memberof TransactionSdkDto */ data: string; /** * The ETH value, if any, this transaction will send along * @type {string} * @memberof TransactionSdkDto */ value: string; } /** * Check if a given object implements the TransactionSdkDto interface. */ export declare function instanceOfTransactionSdkDto(value: object): boolean; export declare function TransactionSdkDtoFromJSON(json: any): TransactionSdkDto; export declare function TransactionSdkDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionSdkDto; export declare function TransactionSdkDtoToJSON(value?: TransactionSdkDto | null): any;