Skip to content

Commit e839baa

Browse files
authored
Merge pull request #5 from ClickSend/feature/CDX-28
CDX-28
2 parents f7bd32e + 8a817bd commit e839baa

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

docs/FaxMessage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**to** | **String** | Recipient fax number in E.164 format. |
88
**list_id** | **Integer** | Your list ID if sending to a whole list. Can be used instead of 'to'. | [optional]
99
**from** | **String** | Your sender id. Must be a valid fax number. | [optional]
10-
**schedule** | **Integer** | Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp | [optional]
10+
**schedule** | **Integer** | Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp | [optional]
1111
**custom_string** | **String** | Your reference. Will be passed back with all replies and delivery reports. | [optional]
1212
**country** | **String** | Recipient country. | [optional]
1313
**from_email** | **String** | An email address where the reply should be emailed to. | [optional]

docs/MmsCampaign.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
**list_id** | **Integer** | Your list id. |
77
**name** | **String** | Your campaign name. |
88
**body** | **String** | Your campaign message. |
9-
**from** | **String** | Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number. | [optional]
9+
**from** | **String** | Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids. | [optional]
1010
**schedule** | **Integer** | Your schedule timestamp. | [optional] [default to 0]
1111
**subject** | **String** | Subject of MMS campaign. |
1212
**media_file** | **String** | URL pointing to media file. |

docs/SmsCampaign.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
**list_id** | **Integer** | Your list id. |
77
**name** | **String** | Your campaign name. |
88
**body** | **String** | Your campaign message. |
9-
**from** | **String** | Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number. | [optional]
9+
**from** | **String** | Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids. | [optional]
1010
**schedule** | **Integer** | Your schedule timestamp. | [optional] [default to 0]
1111
**url_to_shorten** | **String** | url to be shortened add http://smsg.io/xxxxx` to the body as a placeholder. | [optional]
1212

docs/SmsMessage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**from** | **String** | Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number. | [optional]
6+
**from** | **String** | Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids. | [optional]
77
**body** | **String** | Your message. |
88
**to** | **String** | Recipient phone number in E.164 format. | [optional]
99
**source** | **String** | Your method of sending e.g. 'wordpress', 'php', 'c#'. | [optional] [default to 'sdk']
10-
**schedule** | **Integer** | Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp | [optional] [default to 0]
10+
**schedule** | **Integer** | Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp | [optional] [default to 0]
1111
**custom_string** | **String** | Your reference. Will be passed back with all replies and delivery reports. | [optional]
1212
**list_id** | **Integer** | Your list ID if sending to a whole list. Can be used instead of 'to'. | [optional]
1313
**country** | **String** | Recipient country. | [optional]

docs/VoiceMessage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
1111
**source** | **String** | Your method of sending e.g. 'wordpress', 'php', 'c#'. | [optional] [default to 'sdk']
1212
**list_id** | **Integer** | Your list ID if sending to a whole list. Can be used instead of 'to'. | [optional]
1313
**lang** | **String** | au (string, required) - See section on available languages. | [optional]
14-
**schedule** | **Integer** | Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp | [optional]
14+
**schedule** | **Integer** | Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp | [optional]
1515
**require_input** | **Integer** | Whether you want to receive a keypress from the call recipient | [optional] [default to 0]
1616
**machine_detection** | **Integer** | Whether to attempt to detect an answering machine or voicemail service and leave a message | [optional] [default to 0]
1717

lib/clicksend_client/models/fax_message.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class FaxMessage
2727
# Your sender id. Must be a valid fax number.
2828
attr_accessor :from
2929

30-
# Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp
30+
# Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp
3131
attr_accessor :schedule
3232

3333
# Your reference. Will be passed back with all replies and delivery reports.

lib/clicksend_client/models/mms_campaign.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class MmsCampaign
2424
# Your campaign message.
2525
attr_accessor :body
2626

27-
# Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number.
27+
# Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids.
2828
attr_accessor :from
2929

3030
# Your schedule timestamp.

lib/clicksend_client/models/sms_campaign.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class SmsCampaign
2424
# Your campaign message.
2525
attr_accessor :body
2626

27-
# Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number.
27+
# Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids.
2828
attr_accessor :from
2929

3030
# Your schedule timestamp.

lib/clicksend_client/models/sms_message.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
module ClickSendClient
1616
# SmsMessage model
1717
class SmsMessage
18-
# Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number.
18+
# Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids.
1919
attr_accessor :from
2020

2121
# Your message.
@@ -27,7 +27,7 @@ class SmsMessage
2727
# Your method of sending e.g. 'wordpress', 'php', 'c#'.
2828
attr_accessor :source
2929

30-
# Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp
30+
# Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp
3131
attr_accessor :schedule
3232

3333
# Your reference. Will be passed back with all replies and delivery reports.

lib/clicksend_client/models/voice_message.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class VoiceMessage
3939
# au (string, required) - See section on available languages.
4040
attr_accessor :lang
4141

42-
# Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp
42+
# Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp
4343
attr_accessor :schedule
4444

4545
# Whether you want to receive a keypress from the call recipient

0 commit comments

Comments
 (0)