pub trait Keys {
// Required methods
fn get(&self, manager_account_id: String) -> KeysGetResponse;
fn post(
&mut self,
manager_account_id: String,
body: Key
) -> KeysPostResponse;
}
pub trait Keys {
// Required methods
fn get(&self, manager_account_id: String) -> KeysGetResponse;
fn post(
&mut self,
manager_account_id: String,
body: Key
) -> KeysPostResponse;
}