30 lines
658 B
Java
30 lines
658 B
Java
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 channel;
|
|
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;
|
|
private String returnUrl;
|
|
|
|
}
|