/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * 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 PrepareSigningRequest */ export interface PrepareSigningRequest { /** * Whether to assert if wallet has enough balance to pay for the gas cost. If true, the request will fail if the wallet does not have enough balance to pay for the gas cost. * @type {boolean} * @memberof PrepareSigningRequest */ assertBalanceForGasCost?: boolean; /** * Whether to assert if wallet has enough balance to pay for the transfer amount (not including gas cost). If true, the request will fail if the wallet does not have enough balance to pay for the transfer amount (not including gas cost). * @type {boolean} * @memberof PrepareSigningRequest */ assertBalanceForTransferAmount?: boolean; } export declare function PrepareSigningRequestFromJSON(json: any): PrepareSigningRequest; export declare function PrepareSigningRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PrepareSigningRequest; export declare function PrepareSigningRequestToJSON(value?: PrepareSigningRequest | null): any;