created api to update the call
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
package net.gepafin.tendermanagement.model.request;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UpdateCallRequestStep1 {
|
||||
|
||||
|
||||
private String name;
|
||||
|
||||
|
||||
private String descriptionShort;
|
||||
|
||||
|
||||
private String descriptionLong;
|
||||
|
||||
|
||||
private LocalDateTime startDate;
|
||||
|
||||
|
||||
private LocalDateTime endDate;
|
||||
|
||||
|
||||
private BigDecimal amount;
|
||||
|
||||
|
||||
private BigDecimal amountMax;
|
||||
|
||||
|
||||
private List<LookUpDataReq> aimedTo;
|
||||
|
||||
|
||||
private String documentationRequested;
|
||||
|
||||
private Boolean confidi;
|
||||
|
||||
private List<FaqReq> faq;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user