From b75b4c17a7ed31466205229d7d884d4c9b2f1a77 Mon Sep 17 00:00:00 2001 From: developersteve Date: Wed, 7 Mar 2018 17:15:25 +1100 Subject: [PATCH] 1.0.3 - adding notifyURL to MMS request --- README.md | 4 +-- composer.json | 2 +- docs/Model/SendMmsRequest.md | 1 + lib/Api/AuthenticationApi.php | 2 +- lib/Api/MessagingApi.php | 2 +- lib/Api/ProvisioningApi.php | 2 +- lib/ApiException.php | 2 +- lib/Configuration.php | 8 +++--- lib/HeaderSelector.php | 2 +- lib/Model/DeleteNumberRequest.php | 2 +- lib/Model/ErrorError.php | 2 +- lib/Model/ErrorErrorError.php | 2 +- lib/Model/GetSubscriptionResponse.php | 2 +- lib/Model/InboundPollResponse.php | 2 +- lib/Model/MMSContent.php | 2 +- lib/Model/Message.php | 2 +- lib/Model/MessageSentResponse.php | 2 +- lib/Model/MessageType.php | 2 +- lib/Model/ModelInterface.php | 2 +- lib/Model/OAuthRequest.php | 2 +- lib/Model/OAuthResponse.php | 2 +- lib/Model/OutboundPollResponse.php | 2 +- lib/Model/ProvisionNumberRequest.php | 2 +- lib/Model/ProvisionNumberResponse.php | 2 +- lib/Model/SendMmsRequest.php | 32 +++++++++++++++++++++- lib/Model/SendSMSRequest.php | 2 +- lib/Model/Status.php | 2 +- lib/ObjectSerializer.php | 2 +- test/Api/AuthenticationApiTest.php | 2 +- test/Api/MessagingApiTest.php | 2 +- test/Api/ProvisioningApiTest.php | 2 +- test/Model/DeleteNumberRequestTest.php | 2 +- test/Model/ErrorErrorErrorTest.php | 2 +- test/Model/ErrorErrorTest.php | 2 +- test/Model/GetSubscriptionResponseTest.php | 2 +- test/Model/InboundPollResponseTest.php | 2 +- test/Model/MMSContentTest.php | 2 +- test/Model/MessageSentResponseTest.php | 2 +- test/Model/MessageTest.php | 2 +- test/Model/MessageTypeTest.php | 2 +- test/Model/OAuthRequestTest.php | 2 +- test/Model/OAuthResponseTest.php | 2 +- test/Model/OutboundPollResponseTest.php | 2 +- test/Model/ProvisionNumberRequestTest.php | 2 +- test/Model/ProvisionNumberResponseTest.php | 2 +- test/Model/SendMmsRequestTest.php | 9 +++++- test/Model/SendSMSRequestTest.php | 2 +- test/Model/StatusTest.php | 2 +- 48 files changed, 89 insertions(+), 51 deletions(-) diff --git a/README.md b/README.md index 57de9f4..b58027b 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. -- API version: 2.2.4 -- Package version: 1.0.2 +- API version: 2.2.5 +- Package version: 1.0.3 ## Requirements diff --git a/composer.json b/composer.json index 21f90db..4a02f8c 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "Telstra/MessagingAPI-SDK-php", - "version": "1.0.2", + "version": "1.0.3", "description": "", "keywords": [ "swagger", diff --git a/docs/Model/SendMmsRequest.md b/docs/Model/SendMmsRequest.md index 0f5dd71..daeee3e 100644 --- a/docs/Model/SendMmsRequest.md +++ b/docs/Model/SendMmsRequest.md @@ -7,6 +7,7 @@ Name | Type | Description | Notes **to** | **string** | This is the destination address. | **subject** | **string** | The subject that will be used in an MMS message. | **reply_request** | **bool** | If set to true, the reply message functionality will be implemented and the to address will be ignored if present. | +**notify_url** | **string** | Notify url | [optional] **mms_content** | [**\Telstra_Messaging\Model\MMSContent[]**](MMSContent.md) | An Array of content that will be sent in an MMS message. If this array is present it will cause the “body” element to be ignored, and the message will be sent as an MMS. | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/lib/Api/AuthenticationApi.php b/lib/Api/AuthenticationApi.php index 1c862d2..361e654 100644 --- a/lib/Api/AuthenticationApi.php +++ b/lib/Api/AuthenticationApi.php @@ -14,7 +14,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Api/MessagingApi.php b/lib/Api/MessagingApi.php index 2da6629..af9bc2b 100644 --- a/lib/Api/MessagingApi.php +++ b/lib/Api/MessagingApi.php @@ -14,7 +14,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Api/ProvisioningApi.php b/lib/Api/ProvisioningApi.php index ccea197..7e0f739 100644 --- a/lib/Api/ProvisioningApi.php +++ b/lib/Api/ProvisioningApi.php @@ -14,7 +14,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/ApiException.php b/lib/ApiException.php index ec28538..30bae1c 100644 --- a/lib/ApiException.php +++ b/lib/ApiException.php @@ -14,7 +14,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Configuration.php b/lib/Configuration.php index e8067e5..f29d419 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -14,7 +14,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset @@ -88,7 +88,7 @@ class Configuration * * @var string */ - protected $userAgent = 'Swagger-Codegen/1.0.2/php'; + protected $userAgent = 'Swagger-Codegen/1.0.3/php'; /** * Debug switch (default set to false) @@ -396,8 +396,8 @@ public static function toDebugReport() $report = 'PHP SDK (Telstra_Messaging) Debug Report:' . PHP_EOL; $report .= ' OS: ' . php_uname() . PHP_EOL; $report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL; - $report .= ' OpenAPI Spec Version: 2.2.4' . PHP_EOL; - $report .= ' SDK Package Version: 1.0.2' . PHP_EOL; + $report .= ' OpenAPI Spec Version: 2.2.5' . PHP_EOL; + $report .= ' SDK Package Version: 1.0.3' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report; diff --git a/lib/HeaderSelector.php b/lib/HeaderSelector.php index 0e5ab31..cc8fe2f 100644 --- a/lib/HeaderSelector.php +++ b/lib/HeaderSelector.php @@ -14,7 +14,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/DeleteNumberRequest.php b/lib/Model/DeleteNumberRequest.php index 6f1268d..e1be742 100644 --- a/lib/Model/DeleteNumberRequest.php +++ b/lib/Model/DeleteNumberRequest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/ErrorError.php b/lib/Model/ErrorError.php index a5602bf..c51ba16 100644 --- a/lib/Model/ErrorError.php +++ b/lib/Model/ErrorError.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/ErrorErrorError.php b/lib/Model/ErrorErrorError.php index 4eaeb25..c92f1cb 100644 --- a/lib/Model/ErrorErrorError.php +++ b/lib/Model/ErrorErrorError.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/GetSubscriptionResponse.php b/lib/Model/GetSubscriptionResponse.php index e793a95..dc9245f 100644 --- a/lib/Model/GetSubscriptionResponse.php +++ b/lib/Model/GetSubscriptionResponse.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/InboundPollResponse.php b/lib/Model/InboundPollResponse.php index c6b00c5..7d57da0 100644 --- a/lib/Model/InboundPollResponse.php +++ b/lib/Model/InboundPollResponse.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/MMSContent.php b/lib/Model/MMSContent.php index e9ceb6d..250628f 100644 --- a/lib/Model/MMSContent.php +++ b/lib/Model/MMSContent.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/Message.php b/lib/Model/Message.php index 073a613..1d61bbb 100644 --- a/lib/Model/Message.php +++ b/lib/Model/Message.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/MessageSentResponse.php b/lib/Model/MessageSentResponse.php index 70ac7a2..425f2ff 100644 --- a/lib/Model/MessageSentResponse.php +++ b/lib/Model/MessageSentResponse.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/MessageType.php b/lib/Model/MessageType.php index 11a1672..479d684 100644 --- a/lib/Model/MessageType.php +++ b/lib/Model/MessageType.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/ModelInterface.php b/lib/Model/ModelInterface.php index 3a1c0fe..1f46050 100644 --- a/lib/Model/ModelInterface.php +++ b/lib/Model/ModelInterface.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/OAuthRequest.php b/lib/Model/OAuthRequest.php index 6911629..589bb86 100644 --- a/lib/Model/OAuthRequest.php +++ b/lib/Model/OAuthRequest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/OAuthResponse.php b/lib/Model/OAuthResponse.php index edf1c8d..91c47c6 100644 --- a/lib/Model/OAuthResponse.php +++ b/lib/Model/OAuthResponse.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/OutboundPollResponse.php b/lib/Model/OutboundPollResponse.php index d8a13f2..4181362 100644 --- a/lib/Model/OutboundPollResponse.php +++ b/lib/Model/OutboundPollResponse.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/ProvisionNumberRequest.php b/lib/Model/ProvisionNumberRequest.php index ceb0ef4..8906147 100644 --- a/lib/Model/ProvisionNumberRequest.php +++ b/lib/Model/ProvisionNumberRequest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/ProvisionNumberResponse.php b/lib/Model/ProvisionNumberResponse.php index 90b8ed9..7b80bd4 100644 --- a/lib/Model/ProvisionNumberResponse.php +++ b/lib/Model/ProvisionNumberResponse.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/SendMmsRequest.php b/lib/Model/SendMmsRequest.php index cbd7acd..51e6872 100644 --- a/lib/Model/SendMmsRequest.php +++ b/lib/Model/SendMmsRequest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset @@ -61,6 +61,7 @@ class SendMmsRequest implements ModelInterface, ArrayAccess 'to' => 'string', 'subject' => 'string', 'reply_request' => 'bool', + 'notify_url' => 'string', 'mms_content' => '\Telstra_Messaging\Model\MMSContent[]' ]; @@ -74,6 +75,7 @@ class SendMmsRequest implements ModelInterface, ArrayAccess 'to' => null, 'subject' => null, 'reply_request' => null, + 'notify_url' => null, 'mms_content' => null ]; @@ -108,6 +110,7 @@ public static function swaggerFormats() 'to' => 'to', 'subject' => 'subject', 'reply_request' => 'replyRequest', + 'notify_url' => 'notifyURL', 'mms_content' => 'MMSContent' ]; @@ -121,6 +124,7 @@ public static function swaggerFormats() 'to' => 'setTo', 'subject' => 'setSubject', 'reply_request' => 'setReplyRequest', + 'notify_url' => 'setNotifyUrl', 'mms_content' => 'setMmsContent' ]; @@ -134,6 +138,7 @@ public static function swaggerFormats() 'to' => 'getTo', 'subject' => 'getSubject', 'reply_request' => 'getReplyRequest', + 'notify_url' => 'getNotifyUrl', 'mms_content' => 'getMmsContent' ]; @@ -201,6 +206,7 @@ public function __construct(array $data = null) $this->container['to'] = isset($data['to']) ? $data['to'] : null; $this->container['subject'] = isset($data['subject']) ? $data['subject'] : null; $this->container['reply_request'] = isset($data['reply_request']) ? $data['reply_request'] : null; + $this->container['notify_url'] = isset($data['notify_url']) ? $data['notify_url'] : null; $this->container['mms_content'] = isset($data['mms_content']) ? $data['mms_content'] : null; } @@ -355,6 +361,30 @@ public function setReplyRequest($reply_request) return $this; } + /** + * Gets notify_url + * + * @return string + */ + public function getNotifyUrl() + { + return $this->container['notify_url']; + } + + /** + * Sets notify_url + * + * @param string $notify_url Notify url + * + * @return $this + */ + public function setNotifyUrl($notify_url) + { + $this->container['notify_url'] = $notify_url; + + return $this; + } + /** * Gets mms_content * diff --git a/lib/Model/SendSMSRequest.php b/lib/Model/SendSMSRequest.php index d7de55f..e7efc8a 100644 --- a/lib/Model/SendSMSRequest.php +++ b/lib/Model/SendSMSRequest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/Model/Status.php b/lib/Model/Status.php index 56eaf5c..69fb47a 100644 --- a/lib/Model/Status.php +++ b/lib/Model/Status.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/lib/ObjectSerializer.php b/lib/ObjectSerializer.php index 8800957..3bbec0b 100644 --- a/lib/ObjectSerializer.php +++ b/lib/ObjectSerializer.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Api/AuthenticationApiTest.php b/test/Api/AuthenticationApiTest.php index c0e4489..0a5d18e 100644 --- a/test/Api/AuthenticationApiTest.php +++ b/test/Api/AuthenticationApiTest.php @@ -14,7 +14,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Api/MessagingApiTest.php b/test/Api/MessagingApiTest.php index 16f4e65..ed2d77a 100644 --- a/test/Api/MessagingApiTest.php +++ b/test/Api/MessagingApiTest.php @@ -14,7 +14,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Api/ProvisioningApiTest.php b/test/Api/ProvisioningApiTest.php index b203baa..3242424 100644 --- a/test/Api/ProvisioningApiTest.php +++ b/test/Api/ProvisioningApiTest.php @@ -14,7 +14,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/DeleteNumberRequestTest.php b/test/Model/DeleteNumberRequestTest.php index 620bd16..e1eb9b3 100644 --- a/test/Model/DeleteNumberRequestTest.php +++ b/test/Model/DeleteNumberRequestTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/ErrorErrorErrorTest.php b/test/Model/ErrorErrorErrorTest.php index dc5f3ff..d71a959 100644 --- a/test/Model/ErrorErrorErrorTest.php +++ b/test/Model/ErrorErrorErrorTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/ErrorErrorTest.php b/test/Model/ErrorErrorTest.php index d272931..f26deae 100644 --- a/test/Model/ErrorErrorTest.php +++ b/test/Model/ErrorErrorTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/GetSubscriptionResponseTest.php b/test/Model/GetSubscriptionResponseTest.php index 35eecda..34b673d 100644 --- a/test/Model/GetSubscriptionResponseTest.php +++ b/test/Model/GetSubscriptionResponseTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/InboundPollResponseTest.php b/test/Model/InboundPollResponseTest.php index c94e62b..a363681 100644 --- a/test/Model/InboundPollResponseTest.php +++ b/test/Model/InboundPollResponseTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/MMSContentTest.php b/test/Model/MMSContentTest.php index 3fe3f4f..459b731 100644 --- a/test/Model/MMSContentTest.php +++ b/test/Model/MMSContentTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/MessageSentResponseTest.php b/test/Model/MessageSentResponseTest.php index c26ef44..c0e8424 100644 --- a/test/Model/MessageSentResponseTest.php +++ b/test/Model/MessageSentResponseTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/MessageTest.php b/test/Model/MessageTest.php index df2f918..6fe3f2c 100644 --- a/test/Model/MessageTest.php +++ b/test/Model/MessageTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/MessageTypeTest.php b/test/Model/MessageTypeTest.php index e70076b..9858460 100644 --- a/test/Model/MessageTypeTest.php +++ b/test/Model/MessageTypeTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/OAuthRequestTest.php b/test/Model/OAuthRequestTest.php index 55ffb1e..71a4f33 100644 --- a/test/Model/OAuthRequestTest.php +++ b/test/Model/OAuthRequestTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/OAuthResponseTest.php b/test/Model/OAuthResponseTest.php index 35f532d..c5e7863 100644 --- a/test/Model/OAuthResponseTest.php +++ b/test/Model/OAuthResponseTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/OutboundPollResponseTest.php b/test/Model/OutboundPollResponseTest.php index 87f2538..4f48755 100644 --- a/test/Model/OutboundPollResponseTest.php +++ b/test/Model/OutboundPollResponseTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/ProvisionNumberRequestTest.php b/test/Model/ProvisionNumberRequestTest.php index 4c75cee..15664c3 100644 --- a/test/Model/ProvisionNumberRequestTest.php +++ b/test/Model/ProvisionNumberRequestTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/ProvisionNumberResponseTest.php b/test/Model/ProvisionNumberResponseTest.php index 63f68b4..ff7311c 100644 --- a/test/Model/ProvisionNumberResponseTest.php +++ b/test/Model/ProvisionNumberResponseTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/SendMmsRequestTest.php b/test/Model/SendMmsRequestTest.php index b1bf414..a3754ed 100644 --- a/test/Model/SendMmsRequestTest.php +++ b/test/Model/SendMmsRequestTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset @@ -105,6 +105,13 @@ public function testPropertyReplyRequest() { } + /** + * Test attribute "notify_url" + */ + public function testPropertyNotifyUrl() + { + } + /** * Test attribute "mms_content" */ diff --git a/test/Model/SendSMSRequestTest.php b/test/Model/SendSMSRequestTest.php index 5c6113a..5011a00 100644 --- a/test/Model/SendSMSRequestTest.php +++ b/test/Model/SendSMSRequestTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset diff --git a/test/Model/StatusTest.php b/test/Model/StatusTest.php index 6fe2486..4136b79 100644 --- a/test/Model/StatusTest.php +++ b/test/Model/StatusTest.php @@ -15,7 +15,7 @@ * * The Telstra SMS Messaging API allows your applications to send and receive SMS text messages from Australia's leading network operator. It also allows your application to track the delivery status of both sent and received SMS messages. * - * OpenAPI spec version: 2.2.4 + * OpenAPI spec version: 2.2.5 * * Generated by: https://github.com/swagger-api/swagger-codegen.git * Swagger Codegen version: unset