Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# coding: utf-8
from __future__ import absolute_import
from datetime import date, datetime # noqa: F401
from typing import List, Dict # noqa: F401
from swagger_server.models.base_model_ import Model
from swagger_server.models.autoscaling_policy import AutoscalingPolicy # noqa: F401,E501
from swagger_server import util
class AutoscalingPolicyArray(Model):
"""NOTE: This class is auto generated by the swagger code generator program.
Do not edit the class manually.
"""
def __init__(self): # noqa: E501
"""AutoscalingPolicyArray - a model defined in Swagger
"""
self.swagger_types = {
}
self.attribute_map = {
}
@classmethod
def from_dict(cls, dikt) -> 'AutoscalingPolicyArray':
"""Returns the dict as a model
:param dikt: A dict.
:type: dict
:return: The autoscaling_policy_array of this AutoscalingPolicyArray. # noqa: E501
:rtype: AutoscalingPolicyArray
"""
return util.deserialize_model(dikt, cls)