/** * 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. */ /** * Records that the flow has been broadcast. txHash is required for wallet sources but optional for exchange sources (the user may not have the on-chain hash). * @export * @interface FlowRecordBroadcastRequest */ export interface FlowRecordBroadcastRequest { /** * A string with a max length of 4096 characters * @type {string} * @memberof FlowRecordBroadcastRequest */ txHash?: string; } export declare function FlowRecordBroadcastRequestFromJSON(json: any): FlowRecordBroadcastRequest; export declare function FlowRecordBroadcastRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowRecordBroadcastRequest; export declare function FlowRecordBroadcastRequestToJSON(value?: FlowRecordBroadcastRequest | null): any;