@@ -87,7 +87,7 @@ def stream(self, friendly_name=values.unset, status=values.unset, limit=None,
8787 The results are returned as a generator, so this operation is memory efficient.
8888
8989 :param unicode friendly_name: FriendlyName to filter on
90- :param account.status status: Status to filter on
90+ :param AccountInstance.Status status: Status to filter on
9191 :param int limit: Upper limit for the number of records to return. stream()
9292 guarantees to never return more than limit. Default is no limit
9393 :param int page_size: Number of records to fetch per request, when not set will use
@@ -116,7 +116,7 @@ def list(self, friendly_name=values.unset, status=values.unset, limit=None,
116116 memory before returning.
117117
118118 :param unicode friendly_name: FriendlyName to filter on
119- :param account.status status: Status to filter on
119+ :param AccountInstance.Status status: Status to filter on
120120 :param int limit: Upper limit for the number of records to return. list() guarantees
121121 never to return more than limit. Default is no limit
122122 :param int page_size: Number of records to fetch per request, when not set will use
@@ -142,7 +142,7 @@ def page(self, friendly_name=values.unset, status=values.unset,
142142 Request is executed immediately
143143
144144 :param unicode friendly_name: FriendlyName to filter on
145- :param account.status status: Status to filter on
145+ :param AccountInstance.Status status: Status to filter on
146146 :param str page_token: PageToken provided by the API
147147 :param int page_number: Page Number, this value is simply for client state
148148 :param int page_size: Number of records to return, defaults to 50
@@ -316,7 +316,7 @@ def update(self, friendly_name=values.unset, status=values.unset):
316316 Update the AccountInstance
317317
318318 :param unicode friendly_name: FriendlyName to update
319- :param account.status status: Status to update the Account with
319+ :param AccountInstance.Status status: Status to update the Account with
320320
321321 :returns: Updated AccountInstance
322322 :rtype: twilio.rest.api.v2010.account.AccountInstance
@@ -802,7 +802,7 @@ def sid(self):
802802 def status (self ):
803803 """
804804 :returns: The status of this account
805- :rtype: account.status
805+ :rtype: AccountInstance.Status
806806 """
807807 return self ._properties ['status' ]
808808
@@ -818,7 +818,7 @@ def subresource_uris(self):
818818 def type (self ):
819819 """
820820 :returns: The type of this account
821- :rtype: account.type
821+ :rtype: AccountInstance.Type
822822 """
823823 return self ._properties ['type' ]
824824
@@ -844,7 +844,7 @@ def update(self, friendly_name=values.unset, status=values.unset):
844844 Update the AccountInstance
845845
846846 :param unicode friendly_name: FriendlyName to update
847- :param account.status status: Status to update the Account with
847+ :param AccountInstance.Status status: Status to update the Account with
848848
849849 :returns: Updated AccountInstance
850850 :rtype: twilio.rest.api.v2010.account.AccountInstance
0 commit comments