com.brihaspathee.zeus.web.request.InternalRefDataRequestList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tp-service Show documentation
Show all versions of tp-service Show documentation
Service that contains all Trading Partner Information
The newest version!
package com.brihaspathee.zeus.web.request;
import lombok.*;
import java.util.List;
/**
* Created in Intellij IDEA
* User: Balaji Varadharajan
* Date: 29, January 2022
* Time: 7:11 AM
* Project: Zeus
* Package Name: com.zeus.web.request
* To change this template use File | Settings | File and Code Template
*/
@Getter
@Setter
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class InternalRefDataRequestList {
private List internalRefDataRequestList;
@Override
public String toString() {
return "InternalRefDataRequestList{" +
"internalRefDataRequestList=" + internalRefDataRequestList +
'}';
}
}