/** * Rolla Yield API - Market Maker * Rolla Yield API provides a RESTful API for fetching assets, options and quotes * * The version of the OpenAPI document: 1.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 FillResponseDto */ export interface FillResponseDto { /** * Blockchain transaction hash if accepted * @type {string} * @memberof FillResponseDto */ 'transactionHash': string | null; /** * Market Maker Action * @type {string} * @memberof FillResponseDto */ 'marketMakerAction': string; /** * The hash of the order being filled (unique identifier) * @type {string} * @memberof FillResponseDto */ 'orderHash': string; }