/*
* Bluefin API
*
* Bluefin API
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CreateOrderResponse {
/// The unique identifier of this order, to be used as a lookup key
#[serde(rename = "orderHash")]
pub order_hash: String,
}
impl CreateOrderResponse {
pub fn new(order_hash: String) -> CreateOrderResponse {
CreateOrderResponse {
order_hash,
}
}
}