Skip to main content

openlimits_coinbase/model/websocket/
auth.rs

1use serde::Deserialize;
2use serde::Serialize;
3
4/// This struct contains the auth fields
5#[derive(Serialize, Deserialize, Debug)]
6pub struct Auth {
7    pub signature: String,
8    pub key: String,
9    pub passphrase: String,
10    pub timestamp: String,
11}