completed zesa journey

This commit is contained in:
2025-06-27 11:33:49 +02:00
parent fdd3a224ed
commit 6ad1f55d4b
25 changed files with 762 additions and 56 deletions

View File

@@ -0,0 +1,27 @@
package zw.qantra.tm.domain.dtos;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SdkActionDto {
private String clientId;
private String clientSecret;
private String phone;
private String amount;
private String currency;
private String hash;
private String authType;
private String billerReference;
private String action;
private Boolean sandbox;
private String paymentProcessorLabel;
private String responseUrl;
}