Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
31201 amit.gupta 1
package com.spice.profitmandi.dao.model.hdfc;
2
 
3
import com.fasterxml.jackson.annotation.JsonProperty;
4
 
5
import java.util.List;
6
import java.util.Objects;
7
 
8
public class AddPaymentRequestRT {
9
	@JsonProperty("GenericCorporateAlertRequest")
10
	public List<GenericCorporateAlertRequest> genericCorporateAlertRequest;
11
 
12
	@Override
13
	public boolean equals(Object o) {
14
		if (this == o) return true;
15
		if (o == null || getClass() != o.getClass()) return false;
16
		AddPaymentRequestRT that = (AddPaymentRequestRT) o;
17
		return Objects.equals(genericCorporateAlertRequest, that.genericCorporateAlertRequest);
18
	}
19
 
20
	@Override
21
	public int hashCode() {
22
		return Objects.hash(genericCorporateAlertRequest);
23
	}
24
 
25
	public List<GenericCorporateAlertRequest> getGenericCorporateAlertRequest() {
26
		return genericCorporateAlertRequest;
27
	}
28
 
29
	public void setGenericCorporateAlertRequest(List<GenericCorporateAlertRequest> genericCorporateAlertRequest) {
30
		this.genericCorporateAlertRequest = genericCorporateAlertRequest;
31
	}
32
 
33
	@Override
34
	public String toString() {
35
		return "AddPaymentRequestRT{" +
36
				"genericCorporateAlertRequest=" + genericCorporateAlertRequest +
37
				'}';
38
	}
39
}
40
 
41