Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanganderson committed Mar 20, 2024
1 parent 70c86d9 commit 7102ef0
Show file tree
Hide file tree
Showing 51 changed files with 108 additions and 108 deletions.
4 changes: 2 additions & 2 deletions api_authentication.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
2 changes: 1 addition & 1 deletion api_authentication_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Testing AuthenticationAPIService
Expand Down
4 changes: 2 additions & 2 deletions api_free_trial_numbers.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
2 changes: 1 addition & 1 deletion api_free_trial_numbers_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Testing FreeTrialNumbersAPIService
Expand Down
4 changes: 2 additions & 2 deletions api_health_check.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
2 changes: 1 addition & 1 deletion api_health_check_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Testing HealthCheckAPIService
Expand Down
4 changes: 2 additions & 2 deletions api_logs.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
26 changes: 13 additions & 13 deletions api_messages.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down Expand Up @@ -583,14 +583,14 @@ type ApiGetMessagesRequest struct {
acceptCharset *string
contentType *string
telstraApiVersion *string
limit *int32
offset *int32
direction *string
status *string
filter *string
reverse *bool
startTime *time.Time
endTime *time.Time
limit *int32
offset *int32
direction *string
status *string
filter *string
reverse *bool
startTime *time.Time
endTime *time.Time
}

func (r ApiGetMessagesRequest) ContentLanguage(contentLanguage string) ApiGetMessagesRequest {
Expand Down Expand Up @@ -653,19 +653,19 @@ func (r ApiGetMessagesRequest) Filter(filter string) ApiGetMessagesRequest {
return r
}

// If set to **true** the results will be returned in reverse order. Recent messages will be returned first. By default, the results will be returned in the order they were sent/received.
// If set to **true** the results will be returned in reverse order. Recent messages will be returned first. By default, the results will be returned in the order they were sent/received.
func (r ApiGetMessagesRequest) Reverse(reverse bool) ApiGetMessagesRequest {
r.reverse = &reverse
return r
}

// By Default messages from last 30 days will be fetched.Use this parameter to fetch the messages from the time you want. Set the time in London Greenwich Mean Time (adjusting for any time difference) and use ISO format, e.g. \"2024-01-24T15:39:00Z\". You can set a time from last 30 days. If you specify a timestamp outside of this limit, the API will return a FIELD_INVALID error. If startTime alone set, messages from this time till current time will be fetched.
// By Default messages from last 30 days will be fetched.Use this parameter to fetch the messages from the time you want. Set the time in London Greenwich Mean Time (adjusting for any time difference) and use ISO format, e.g. \"2024-01-24T15:39:00Z\". You can set a time from last 30 days. If you specify a timestamp outside of this limit, the API will return a FIELD_INVALID error. If startTime alone set, messages from this time till current time will be fetched.
func (r ApiGetMessagesRequest) StartTime(startTime time.Time) ApiGetMessagesRequest {
r.startTime = &startTime
return r
}

// By Default messages from last 30 days will be fetched. Use this parameter to fetch the messages till the time you want. Set the time in London Greenwich Mean Time (adjusting for any time difference) and use ISO format, e.g. \"2024-01-24T16:39:00Z\". You can set a time from last 30 days and endTime should be after startTime (if set). If you specify a timestamp outside of this limit, the API will return a FIELD_INVALID error.
// By Default messages from last 30 days will be fetched. Use this parameter to fetch the messages till the time you want. Set the time in London Greenwich Mean Time (adjusting for any time difference) and use ISO format, e.g. \"2024-01-24T16:39:00Z\". You can set a time from last 30 days and endTime should be after startTime (if set). If you specify a timestamp outside of this limit, the API will return a FIELD_INVALID error.
func (r ApiGetMessagesRequest) EndTime(endTime time.Time) ApiGetMessagesRequest {
r.endTime = &endTime
return r
Expand Down
2 changes: 1 addition & 1 deletion api_messages_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Testing MessagesAPIService
Expand Down
4 changes: 2 additions & 2 deletions api_reports.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
2 changes: 1 addition & 1 deletion api_reports_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*Messaging API v3.1.0
/*Messaging API v3.4.3
Testing ReportsAPIService
Expand Down
4 changes: 2 additions & 2 deletions api_virtual_numbers.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
2 changes: 1 addition & 1 deletion api_virtual_numbers_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Testing VirtualNumbersAPIService
Expand Down
6 changes: 3 additions & 3 deletions client.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down Expand Up @@ -40,7 +40,7 @@ var (
queryDescape = strings.NewReplacer("%5B", "[", "%5D", "]")
)

// APIClient manages communication with the Messaging API v3.1.0 API v3.1.0
// APIClient manages communication with the Messaging API v3.4.3 API v3.1.0
// In most cases there should be only one, shared, APIClient.
type APIClient struct {
cfg *Configuration
Expand Down
4 changes: 2 additions & 2 deletions configuration.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_assign_number_request.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_auth_token_400_response.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_create_trial_numbers_request.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_create_trial_numbers_request_free_trial_numbers.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_error.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_errors.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_free_trial_numbers.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_get_logs_200_response.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_get_messages_200_response.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_get_messages_200_response_paging.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_get_numbers_200_response.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_get_recipient_optouts_200_response.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_get_report_200_response.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_get_reports_200_response.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_get_reports_200_response_reports_inner.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
4 changes: 2 additions & 2 deletions model_health_check_200_response.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
Messaging API v3.1.0
Messaging API v3.4.3
Send and receive SMS & MMS programmatically, leveraging Australia's leading mobile network. With Telstra's Messaging API, we take out the complexity to allow seamless messaging integration into your app, with just a few lines of code. Our REST API is enterprise grade, allowing you to communicate with engaging SMS & MMS messaging in your web and mobile apps in near real-time on a global scale.
API version: 3.1.0
*/

package TelstraMessaging
Expand Down
Loading

0 comments on commit 7102ef0

Please sign in to comment.