refactor: Add service_name to get and delete request (#738)

This commit is contained in:
Manoj Ghorela
2023-03-14 13:18:40 +05:30
committed by GitHub
parent e102cae76c
commit 8b7ae9c356
2 changed files with 4 additions and 0 deletions

View File

@ -545,12 +545,14 @@ pub struct TokenizePayloadRequest {
#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct GetTokenizePayloadRequest {
pub lookup_key: String,
pub service_name: String,
pub get_value2: bool,
}
#[derive(Debug, serde::Serialize)]
pub struct DeleteTokenizeByTokenRequest {
pub lookup_key: String,
pub service_name: String,
}
#[derive(Debug, serde::Serialize)] // Blocked: Yet to be implemented by `basilisk`