1/// This struct represents the coinbase credentials 2#[derive(Clone, Debug)] 3pub struct CoinbaseCredentials { 4 pub api_key: String, 5 pub api_secret: String, 6 pub passphrase: String, 7}