@@ -35,6 +35,7 @@ class Order(object):
3535 """
3636 openapi_types = {
3737 "id" : "str" ,
38+ "created_at" : "datetime" ,
3839 "mass_g" : "int" ,
3940 "production" : "bool" ,
4041 "state" : "str" ,
@@ -48,6 +49,7 @@ class Order(object):
4849
4950 attribute_map = {
5051 "id" : "id" ,
52+ "created_at" : "created_at" ,
5153 "mass_g" : "mass_g" ,
5254 "production" : "production" ,
5355 "state" : "state" ,
@@ -62,6 +64,7 @@ class Order(object):
6264 def __init__ (
6365 self ,
6466 id = None ,
67+ created_at = None ,
6568 mass_g = None ,
6669 production = None ,
6770 state = None ,
@@ -79,6 +82,7 @@ def __init__(
7982 self .local_vars_configuration = local_vars_configuration
8083
8184 self ._id = None
85+ self ._created_at = None
8286 self ._mass_g = None
8387 self ._production = None
8488 self ._state = None
@@ -91,6 +95,8 @@ def __init__(
9195 self .discriminator = None
9296
9397 self .id = id
98+ if created_at is not None :
99+ self .created_at = created_at
94100 self .mass_g = mass_g
95101 self .production = production
96102 self .state = state
@@ -129,6 +135,29 @@ def id(self, id):
129135
130136 self ._id = id
131137
138+ @property
139+ def created_at (self ):
140+ """Gets the created_at of this Order. # noqa: E501
141+
142+ The timestamp at which the order was created # noqa: E501
143+
144+ :return: The created_at of this Order. # noqa: E501
145+ :rtype: datetime
146+ """
147+ return self ._created_at
148+
149+ @created_at .setter
150+ def created_at (self , created_at ):
151+ """Sets the created_at of this Order.
152+
153+ The timestamp at which the order was created # noqa: E501
154+
155+ :param created_at: The created_at of this Order. # noqa: E501
156+ :type: datetime
157+ """
158+
159+ self ._created_at = created_at
160+
132161 @property
133162 def mass_g (self ):
134163 """Gets the mass_g of this Order. # noqa: E501
0 commit comments