diff --git a/twilio/rest/autopilot/v1/assistant/__init__.py b/twilio/rest/autopilot/v1/assistant/__init__.py index c138219e7c..3e139e7fd4 100644 --- a/twilio/rest/autopilot/v1/assistant/__init__.py +++ b/twilio/rest/autopilot/v1/assistant/__init__.py @@ -280,7 +280,7 @@ def update(self, friendly_name=values.unset, log_queries=values.unset, :param unicode callback_url: Reserved :param unicode callback_events: Reserved :param dict style_sheet: A JSON string that defines the Assistant's style sheet - :param dict defaults: A JSON object that defines the Assistant's [default tasks](https://www.twilio.com/docs/autopilot/api/assistant/defaults) for various scenarios + :param dict defaults: A JSON object that defines the Assistant's `default tasks `_ for various scenarios :param unicode development_stage: A string describing the state of the assistant. :returns: The updated AssistantInstance @@ -600,7 +600,7 @@ def update(self, friendly_name=values.unset, log_queries=values.unset, :param unicode callback_url: Reserved :param unicode callback_events: Reserved :param dict style_sheet: A JSON string that defines the Assistant's style sheet - :param dict defaults: A JSON object that defines the Assistant's [default tasks](https://www.twilio.com/docs/autopilot/api/assistant/defaults) for various scenarios + :param dict defaults: A JSON object that defines the Assistant's `default tasks `_ for various scenarios :param unicode development_stage: A string describing the state of the assistant. :returns: The updated AssistantInstance diff --git a/twilio/rest/autopilot/v1/assistant/query.py b/twilio/rest/autopilot/v1/assistant/query.py index f9b2647044..a6b01b8a9e 100644 --- a/twilio/rest/autopilot/v1/assistant/query.py +++ b/twilio/rest/autopilot/v1/assistant/query.py @@ -47,7 +47,7 @@ def stream(self, language=values.unset, model_build=values.unset, :param unicode language: The ISO language-country string that specifies the language used by the Query resources to read :param unicode model_build: The SID or unique name of the Model Build to be queried :param unicode status: The status of the resources to read - :param unicode dialogue_sid: The SID of the [Dialogue](https://www.twilio.com/docs/autopilot/api/dialogue). + :param unicode dialogue_sid: The SID of the `Dialogue `_. :param int limit: Upper limit for the number of records to return. stream() guarantees to never return more than limit. Default is no limit :param int page_size: Number of records to fetch per request, when not set will use @@ -81,7 +81,7 @@ def list(self, language=values.unset, model_build=values.unset, :param unicode language: The ISO language-country string that specifies the language used by the Query resources to read :param unicode model_build: The SID or unique name of the Model Build to be queried :param unicode status: The status of the resources to read - :param unicode dialogue_sid: The SID of the [Dialogue](https://www.twilio.com/docs/autopilot/api/dialogue). + :param unicode dialogue_sid: The SID of the `Dialogue `_. :param int limit: Upper limit for the number of records to return. list() guarantees never to return more than limit. Default is no limit :param int page_size: Number of records to fetch per request, when not set will use @@ -112,7 +112,7 @@ def page(self, language=values.unset, model_build=values.unset, :param unicode language: The ISO language-country string that specifies the language used by the Query resources to read :param unicode model_build: The SID or unique name of the Model Build to be queried :param unicode status: The status of the resources to read - :param unicode dialogue_sid: The SID of the [Dialogue](https://www.twilio.com/docs/autopilot/api/dialogue). + :param unicode dialogue_sid: The SID of the `Dialogue `_. :param str page_token: PageToken provided by the API :param int page_number: Page Number, this value is simply for client state :param int page_size: Number of records to return, defaults to 50 @@ -418,7 +418,7 @@ def language(self): @property def model_build_sid(self): """ - :returns: The SID of the [Model Build](https://www.twilio.com/docs/autopilot/api/model-build) queried + :returns: The SID of the `Model Build `_ queried :rtype: unicode """ return self._properties['model_build_sid'] @@ -482,7 +482,7 @@ def source_channel(self): @property def dialogue_sid(self): """ - :returns: The SID of the [Dialogue](https://www.twilio.com/docs/autopilot/api/dialogue). + :returns: The SID of the `Dialogue `_. :rtype: unicode """ return self._properties['dialogue_sid'] diff --git a/twilio/rest/autopilot/v1/assistant/task/field.py b/twilio/rest/autopilot/v1/assistant/task/field.py index fa5f086cb1..2cbc867988 100644 --- a/twilio/rest/autopilot/v1/assistant/task/field.py +++ b/twilio/rest/autopilot/v1/assistant/task/field.py @@ -25,7 +25,7 @@ def __init__(self, version, assistant_sid, task_sid): :param Version version: Version that contains the resource :param assistant_sid: The SID of the Assistant that is the parent of the Task associated with the resource - :param task_sid: The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource associated with this Field + :param task_sid: The SID of the `Task `_ resource associated with this Field :returns: twilio.rest.autopilot.v1.assistant.task.field.FieldList :rtype: twilio.rest.autopilot.v1.assistant.task.field.FieldList @@ -188,7 +188,7 @@ def __init__(self, version, response, solution): :param Version version: Version that contains the resource :param Response response: Response from the API :param assistant_sid: The SID of the Assistant that is the parent of the Task associated with the resource - :param task_sid: The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource associated with this Field + :param task_sid: The SID of the `Task `_ resource associated with this Field :returns: twilio.rest.autopilot.v1.assistant.task.field.FieldPage :rtype: twilio.rest.autopilot.v1.assistant.task.field.FieldPage @@ -235,7 +235,7 @@ def __init__(self, version, assistant_sid, task_sid, sid): :param Version version: Version that contains the resource :param assistant_sid: The SID of the Assistant that is the parent of the Task associated with the resource to fetch - :param task_sid: The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource associated with the Field resource to fetch + :param task_sid: The SID of the `Task `_ resource associated with the Field resource to fetch :param sid: The unique string that identifies the resource :returns: twilio.rest.autopilot.v1.assistant.task.field.FieldContext @@ -372,7 +372,7 @@ def field_type(self): @property def task_sid(self): """ - :returns: The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource associated with this Field + :returns: The SID of the `Task `_ resource associated with this Field :rtype: unicode """ return self._properties['task_sid'] diff --git a/twilio/rest/conversations/v1/conversation/message/delivery_receipt.py b/twilio/rest/conversations/v1/conversation/message/delivery_receipt.py index d030a5da7e..28937f39ed 100644 --- a/twilio/rest/conversations/v1/conversation/message/delivery_receipt.py +++ b/twilio/rest/conversations/v1/conversation/message/delivery_receipt.py @@ -362,7 +362,7 @@ def status(self): @property def error_code(self): """ - :returns: The message [delivery error code](https://www.twilio.com/docs/sms/api/message-resource#delivery-related-errors) for a `failed` status + :returns: The message `delivery error code `_ for a `failed` status :rtype: unicode """ return self._properties['error_code'] diff --git a/twilio/rest/video/v1/composition/__init__.py b/twilio/rest/video/v1/composition/__init__.py index 622f7f936d..1ed24111d5 100644 --- a/twilio/rest/video/v1/composition/__init__.py +++ b/twilio/rest/video/v1/composition/__init__.py @@ -45,7 +45,7 @@ def stream(self, status=values.unset, date_created_after=values.unset, The results are returned as a generator, so this operation is memory efficient. :param CompositionInstance.Status status: Read only Composition resources with this status - :param datetime date_created_after: Read only Composition resources created on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone + :param datetime date_created_after: Read only Composition resources created on or after this `ISO 8601 `_ date-time with time zone :param datetime date_created_before: Read only Composition resources created before this ISO 8601 date-time with time zone :param unicode room_sid: Read only Composition resources with this Room SID :param int limit: Upper limit for the number of records to return. stream() @@ -79,7 +79,7 @@ def list(self, status=values.unset, date_created_after=values.unset, memory before returning. :param CompositionInstance.Status status: Read only Composition resources with this status - :param datetime date_created_after: Read only Composition resources created on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone + :param datetime date_created_after: Read only Composition resources created on or after this `ISO 8601 `_ date-time with time zone :param datetime date_created_before: Read only Composition resources created before this ISO 8601 date-time with time zone :param unicode room_sid: Read only Composition resources with this Room SID :param int limit: Upper limit for the number of records to return. list() guarantees @@ -110,7 +110,7 @@ def page(self, status=values.unset, date_created_after=values.unset, Request is executed immediately :param CompositionInstance.Status status: Read only Composition resources with this status - :param datetime date_created_after: Read only Composition resources created on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone + :param datetime date_created_after: Read only Composition resources created on or after this `ISO 8601 `_ date-time with time zone :param datetime date_created_before: Read only Composition resources created before this ISO 8601 date-time with time zone :param unicode room_sid: Read only Composition resources with this Room SID :param str page_token: PageToken provided by the API diff --git a/twilio/rest/video/v1/recording/__init__.py b/twilio/rest/video/v1/recording/__init__.py index 61ccc11947..da3d2bcd72 100644 --- a/twilio/rest/video/v1/recording/__init__.py +++ b/twilio/rest/video/v1/recording/__init__.py @@ -16,7 +16,6 @@ class RecordingList(ListResource): - """ """ def __init__(self, version): """ @@ -46,8 +45,8 @@ def stream(self, status=values.unset, source_sid=values.unset, :param RecordingInstance.Status status: Read only the recordings that have this status :param unicode source_sid: Read only the recordings that have this source_sid :param unicode grouping_sid: Read only recordings that have this grouping_sid - :param datetime date_created_after: Read only recordings that started on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone - :param datetime date_created_before: Read only recordings that started before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone + :param datetime date_created_after: Read only recordings that started on or after this `ISO 8601 `_ date-time with time zone + :param datetime date_created_before: Read only recordings that started before this `ISO 8601 `_ date-time with time zone :param RecordingInstance.Type media_type: Read only recordings that have this media type :param int limit: Upper limit for the number of records to return. stream() guarantees to never return more than limit. Default is no limit @@ -85,8 +84,8 @@ def list(self, status=values.unset, source_sid=values.unset, :param RecordingInstance.Status status: Read only the recordings that have this status :param unicode source_sid: Read only the recordings that have this source_sid :param unicode grouping_sid: Read only recordings that have this grouping_sid - :param datetime date_created_after: Read only recordings that started on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone - :param datetime date_created_before: Read only recordings that started before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone + :param datetime date_created_after: Read only recordings that started on or after this `ISO 8601 `_ date-time with time zone + :param datetime date_created_before: Read only recordings that started before this `ISO 8601 `_ date-time with time zone :param RecordingInstance.Type media_type: Read only recordings that have this media type :param int limit: Upper limit for the number of records to return. list() guarantees never to return more than limit. Default is no limit @@ -121,8 +120,8 @@ def page(self, status=values.unset, source_sid=values.unset, :param RecordingInstance.Status status: Read only the recordings that have this status :param unicode source_sid: Read only the recordings that have this source_sid :param unicode grouping_sid: Read only recordings that have this grouping_sid - :param datetime date_created_after: Read only recordings that started on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone - :param datetime date_created_before: Read only recordings that started before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone + :param datetime date_created_after: Read only recordings that started on or after this `ISO 8601 `_ date-time with time zone + :param datetime date_created_before: Read only recordings that started before this `ISO 8601 `_ date-time with time zone :param RecordingInstance.Type media_type: Read only recordings that have this media type :param str page_token: PageToken provided by the API :param int page_number: Page Number, this value is simply for client state @@ -197,7 +196,6 @@ def __repr__(self): class RecordingPage(Page): - """ """ def __init__(self, version, response, solution): """ @@ -236,7 +234,6 @@ def __repr__(self): class RecordingContext(InstanceContext): - """ """ def __init__(self, version, sid): """ @@ -286,7 +283,6 @@ def __repr__(self): class RecordingInstance(InstanceResource): - """ """ class Status(object): PROCESSING = "processing" diff --git a/twilio/rest/voice/v1/ip_record.py b/twilio/rest/voice/v1/ip_record.py index e933a6e214..a005b67543 100644 --- a/twilio/rest/voice/v1/ip_record.py +++ b/twilio/rest/voice/v1/ip_record.py @@ -15,7 +15,6 @@ class IpRecordList(ListResource): - """ """ def __init__(self, version): """ @@ -39,7 +38,7 @@ def create(self, ip_address, friendly_name=values.unset, :param unicode ip_address: An IP address in dotted decimal notation, IPv4 only. :param unicode friendly_name: A string to describe the resource - :param unicode cidr_prefix_length: An integer representing the length of the [CIDR](https://tools.ietf.org/html/rfc4632) prefix to use with this IP address. By default the entire IP address is used, which for IPv4 is value 32. + :param unicode cidr_prefix_length: An integer representing the length of the `CIDR `_ prefix to use with this IP address. By default the entire IP address is used, which for IPv4 is value 32. :returns: The created IpRecordInstance :rtype: twilio.rest.voice.v1.ip_record.IpRecordInstance @@ -164,7 +163,6 @@ def __repr__(self): class IpRecordPage(Page): - """ """ def __init__(self, version, response, solution): """ @@ -203,7 +201,6 @@ def __repr__(self): class IpRecordContext(InstanceContext): - """ """ def __init__(self, version, sid): """ @@ -268,7 +265,6 @@ def __repr__(self): class IpRecordInstance(InstanceResource): - """ """ def __init__(self, version, payload, sid=None): """ @@ -343,7 +339,7 @@ def ip_address(self): @property def cidr_prefix_length(self): """ - :returns: An integer representing the length of the [CIDR](https://tools.ietf.org/html/rfc4632) prefix to use with this IP address. By default the entire IP address is used, which for IPv4 is value 32. + :returns: An integer representing the length of the `CIDR `_ prefix to use with this IP address. By default the entire IP address is used, which for IPv4 is value 32. :rtype: unicode """ return self._properties['cidr_prefix_length']