mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 02:37:05 +00:00 
			
		
		
		
	 29832e5385
			
		
	
	
		29832e5385
		
			
		
	
	
	
	
		
			
			Co-authored-by: Harshal Sheth <harshal@acryl.io> Co-authored-by: Dexter Lee <dexter@acryl.io> Co-authored-by: Gabe Lyons <itsgabelyons@gmail.com>
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package graphql;
 | |
| 
 | |
| 
 | |
| @javax.annotation.Generated(
 | |
|     value = "com.kobylynskyi.graphql.codegen.GraphQLCodegen",
 | |
|     date = "2021-05-03T10:56:06-0700"
 | |
| )
 | |
| public class DateRange implements java.io.Serializable {
 | |
| 
 | |
|     private String start;
 | |
|     private String end;
 | |
| 
 | |
|     public DateRange() {
 | |
|     }
 | |
| 
 | |
|     public DateRange(String start, String end) {
 | |
|         this.start = start;
 | |
|         this.end = end;
 | |
|     }
 | |
| 
 | |
|     public String getStart() {
 | |
|         return start;
 | |
|     }
 | |
|     public void setStart(String start) {
 | |
|         this.start = start;
 | |
|     }
 | |
| 
 | |
|     public String getEnd() {
 | |
|         return end;
 | |
|     }
 | |
|     public void setEnd(String end) {
 | |
|         this.end = end;
 | |
|     }
 | |
| 
 | |
| 
 | |
| 
 | |
|     public static DateRange.Builder builder() {
 | |
|         return new DateRange.Builder();
 | |
|     }
 | |
| 
 | |
|     public static class Builder {
 | |
| 
 | |
|         private String start;
 | |
|         private String end;
 | |
| 
 | |
|         public Builder() {
 | |
|         }
 | |
| 
 | |
|         public Builder setStart(String start) {
 | |
|             this.start = start;
 | |
|             return this;
 | |
|         }
 | |
| 
 | |
|         public Builder setEnd(String end) {
 | |
|             this.end = end;
 | |
|             return this;
 | |
|         }
 | |
| 
 | |
| 
 | |
|         public DateRange build() {
 | |
|             return new DateRange(start, end);
 | |
|         }
 | |
| 
 | |
|     }
 | |
| }
 |