com.numeralasia.payment.model.midtrans.TransactionGateDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payment-model Show documentation
Show all versions of payment-model Show documentation
Payment-Model
Model Class for representating an object for payment through midtrans, this is used for accessing model api if you use Numeral Asia payment service
package com.numeralasia.payment.model.midtrans;
import com.numeralasia.payment.model.EBaseDto;
import com.numeralasia.payment.model.client.ClientDto;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
@Data
@ToString(of = "id")
@EqualsAndHashCode(callSuper = true, of = "id")
public class TransactionGateDto extends EBaseDto {
String orderId ;
ClientDto client ;
}