1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* 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 LinkSignerDtoData {
/// Id representing the registered subaccount
#[serde(rename = "subaccountId")]
pub subaccount_id: uuid::Uuid,
/// Account address that created the signature in this message
#[serde(rename = "sender")]
pub sender: String,
/// Bytes32 encoded subaccount name (0x prefix, zero padded)
#[serde(rename = "subaccount")]
pub subaccount: String,
/// Address of signer to allowed for delegated signing
#[serde(rename = "signer")]
pub signer: String,
/// Message nonce timestamp (nanoseconds since Unix Epoch)
#[serde(rename = "nonce")]
pub nonce: String,
/// Message signedAt current timestamp (seconds since Unix Epoch)
#[serde(rename = "signedAt")]
pub signed_at: f64,
}
impl LinkSignerDtoData {
pub fn new(
subaccount_id: uuid::Uuid,
sender: String,
subaccount: String,
signer: String,
nonce: String,
signed_at: f64,
) -> LinkSignerDtoData {
LinkSignerDtoData {
subaccount_id,
sender,
subaccount,
signer,
nonce,
signed_at,
}
}
}