org.vfdtech.models.cba.mifos.MifosPlacePndRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utilities-and-generic-tools Show documentation
Show all versions of utilities-and-generic-tools Show documentation
A utilities service with generic tools implementation. Can be
plugged into your java project
package org.vfdtech.models.cba.mifos;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@JsonInclude(JsonInclude.Include.NON_NULL)
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class MifosPlacePndRequest implements IPaymentRequest{
private String pndComment;
private String accountId;
private String narrationId;
@Override
public String getReference() {
return null;
}
@Override
public String toJsonString() {
return null;
}
}