1 2 3 4 5 6 7 8 9 10 11 12
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] pub struct ImportApiKeyResponse { pub api_key_id: String, } impl ImportApiKeyResponse { pub fn new(api_key_id: String) -> Self { ImportApiKeyResponse { api_key_id, } } }