/*
* Ethereal Exchange API
*
* Ethereal HTTP API for real-time trading, order management, and market data access.
*
* The version of the OpenAPI document: 0.1.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CancelOrderDto {
/// The signature from signTypedData(...) signed by the sender
#[serde(rename = "signature")]
pub signature: String,
#[serde(rename = "data")]
pub data: models::CancelOrderDtoData,
}
impl CancelOrderDto {
pub fn new(signature: String, data: models::CancelOrderDtoData) -> CancelOrderDto {
CancelOrderDto { signature, data }
}
}