|
18 | 18 | from twilio.rest.flex_api.v1.assessments import AssessmentsList |
19 | 19 | from twilio.rest.flex_api.v1.channel import ChannelList |
20 | 20 | from twilio.rest.flex_api.v1.configuration import ConfigurationList |
| 21 | +from twilio.rest.flex_api.v1.create_flex_instance import CreateFlexInstanceList |
21 | 22 | from twilio.rest.flex_api.v1.flex_flow import FlexFlowList |
22 | 23 | from twilio.rest.flex_api.v1.insights_assessments_comment import ( |
23 | 24 | InsightsAssessmentsCommentList, |
@@ -64,6 +65,7 @@ def __init__(self, domain: Domain): |
64 | 65 | self._assessments: Optional[AssessmentsList] = None |
65 | 66 | self._channel: Optional[ChannelList] = None |
66 | 67 | self._configuration: Optional[ConfigurationList] = None |
| 68 | + self._create_flex_instance: Optional[CreateFlexInstanceList] = None |
67 | 69 | self._flex_flow: Optional[FlexFlowList] = None |
68 | 70 | self._insights_assessments_comment: Optional[InsightsAssessmentsCommentList] = ( |
69 | 71 | None |
@@ -113,6 +115,12 @@ def configuration(self) -> ConfigurationList: |
113 | 115 | self._configuration = ConfigurationList(self) |
114 | 116 | return self._configuration |
115 | 117 |
|
| 118 | + @property |
| 119 | + def create_flex_instance(self) -> CreateFlexInstanceList: |
| 120 | + if self._create_flex_instance is None: |
| 121 | + self._create_flex_instance = CreateFlexInstanceList(self) |
| 122 | + return self._create_flex_instance |
| 123 | + |
116 | 124 | @property |
117 | 125 | def flex_flow(self) -> FlexFlowList: |
118 | 126 | if self._flex_flow is None: |
|
0 commit comments