File tree Expand file tree Collapse file tree 1 file changed +60
-0
lines changed 
src/test/java/core/model/quote/response Expand file tree Collapse file tree 1 file changed +60
-0
lines changed Original file line number Diff line number Diff line change 1+ package  core .model .quote .response ;
2+ 
3+ import  java .util .List ;
4+ 
5+ public  class  QuoteCreateResponseQuoteDTO  {
6+  private  double  totalPrice ;
7+  private  String  id ;
8+  private  List <QuoteCreateResponseLineDTO > lines ;
9+  private  String  customer ;
10+  private  long  revision ;
11+  private  long  status ;
12+ 
13+  public  double  getTotalPrice () {
14+  return  totalPrice ;
15+  }
16+ 
17+  public  void  setTotalPrice (double  value ) {
18+  this .totalPrice  = value ;
19+  }
20+ 
21+  public  String  getId () {
22+  return  id ;
23+  }
24+ 
25+  public  void  setId (String  value ) {
26+  this .id  = value ;
27+  }
28+ 
29+  public  List <QuoteCreateResponseLineDTO > getLines () {
30+  return  lines ;
31+  }
32+ 
33+  public  void  setLines (List <QuoteCreateResponseLineDTO > value ) {
34+  this .lines  = value ;
35+  }
36+ 
37+  public  String  getCustomer () {
38+  return  customer ;
39+  }
40+ 
41+  public  void  setCustomer (String  value ) {
42+  this .customer  = value ;
43+  }
44+ 
45+  public  long  getRevision () {
46+  return  revision ;
47+  }
48+ 
49+  public  void  setRevision (long  value ) {
50+  this .revision  = value ;
51+  }
52+ 
53+  public  long  getStatus () {
54+  return  status ;
55+  }
56+ 
57+  public  void  setStatus (long  value ) {
58+  this .status  = value ;
59+  }
60+ }
                         You can’t perform that action at this time. 
           
                  
0 commit comments