/** * 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. */ /** * Request body for preparing a flow for signing. * @export * @interface FlowPrepareSigningRequest */ export interface FlowPrepareSigningRequest { /** * Whether to assert that the wallet has enough balance to pay for the gas cost. If true, the request fails when the wallet lacks gas balance. * @type {boolean} * @memberof FlowPrepareSigningRequest */ assertBalanceForGasCost?: boolean; /** * Whether to assert that the wallet has enough balance to pay for the transfer amount (not including gas cost). * @type {boolean} * @memberof FlowPrepareSigningRequest */ assertBalanceForTransferAmount?: boolean; } export declare function FlowPrepareSigningRequestFromJSON(json: any): FlowPrepareSigningRequest; export declare function FlowPrepareSigningRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowPrepareSigningRequest; export declare function FlowPrepareSigningRequestToJSON(value?: FlowPrepareSigningRequest | null): any;