Skip to content

Commit af5b2fb

Browse files
authored
Merge pull request #23 from ClickSend/feature/CDX-28
CDX-28
2 parents 06237c6 + 699de27 commit af5b2fb

File tree

10 files changed

+24
-24
lines changed

10 files changed

+24
-24
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
**ListId** | **int?** | 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** | **int?** | Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp | [optional]
10+
**Schedule** | **int?** | 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
**CustomString** | **string** | Your reference. Will be passed back with all replies and delivery reports. | [optional]
1212
**Country** | **string** | Recipient country. | [optional]
1313
**FromEmail** | **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
**ListId** | **int?** | 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** | **int?** | Your schedule timestamp. | [optional] [default to 0]
1111
**Subject** | **string** | Subject of MMS campaign. |
1212
**MediaFile** | **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
**ListId** | **int?** | 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** | **int?** | Your schedule timestamp. | [optional] [default to 0]
1111
**UrlToShorten** | **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

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** | **int?** | 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** | **int?** | 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
**CustomString** | **string** | Your reference. Will be passed back with all replies and delivery reports. | [optional]
1212
**ListId** | **int?** | 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
**ListId** | **int?** | 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** | **int?** | Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp | [optional]
14+
**Schedule** | **int?** | 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
**RequireInput** | **int?** | Whether you want to receive a keypress from the call recipient | [optional] [default to 0]
1616
**MachineDetection** | **int?** | Whether to attempt to detect an answering machine or voicemail service and leave a message | [optional] [default to 0]
1717

src/IO.ClickSend/ClickSend.Model/FaxMessage.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public partial class FaxMessage : IEquatable<FaxMessage>, IValidatableObject
3737
/// <param name="to">Recipient fax number in E.164 format. (required).</param>
3838
/// <param name="listId">Your list ID if sending to a whole list. Can be used instead of &#x27;to&#x27;..</param>
3939
/// <param name="from">Your sender id. Must be a valid fax number..</param>
40-
/// <param name="schedule">Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp.</param>
40+
/// <param name="schedule">Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp.</param>
4141
/// <param name="customString">Your reference. Will be passed back with all replies and delivery reports..</param>
4242
/// <param name="country">Recipient country..</param>
4343
/// <param name="fromEmail">An email address where the reply should be emailed to..</param>
@@ -98,9 +98,9 @@ public partial class FaxMessage : IEquatable<FaxMessage>, IValidatableObject
9898
public string From { get; set; }
9999

100100
/// <summary>
101-
/// Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp
101+
/// Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp
102102
/// </summary>
103-
/// <value>Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp</value>
103+
/// <value>Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp</value>
104104
[DataMember(Name="schedule", EmitDefaultValue=false)]
105105
public int? Schedule { get; set; }
106106

src/IO.ClickSend/ClickSend.Model/MmsCampaign.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public partial class MmsCampaign : IEquatable<MmsCampaign>, IValidatableObject
3636
/// <param name="listId">Your list id. (required).</param>
3737
/// <param name="name">Your campaign name. (required).</param>
3838
/// <param name="body">Your campaign message. (required).</param>
39-
/// <param name="from">Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number..</param>
39+
/// <param name="from">Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids</param>
4040
/// <param name="schedule">Your schedule timestamp. (default to 0).</param>
4141
/// <param name="subject">Subject of MMS campaign. (required).</param>
4242
/// <param name="mediaFile">URL pointing to media file. (required).</param>
@@ -121,9 +121,9 @@ public partial class MmsCampaign : IEquatable<MmsCampaign>, IValidatableObject
121121
public string Body { get; set; }
122122

123123
/// <summary>
124-
/// Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number.
124+
/// Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids.
125125
/// </summary>
126-
/// <value>Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number.</value>
126+
/// <value>Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids.</value>
127127
[DataMember(Name="from", EmitDefaultValue=false)]
128128
public string From { get; set; }
129129

src/IO.ClickSend/ClickSend.Model/SmsCampaign.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public partial class SmsCampaign : IEquatable<SmsCampaign>, IValidatableObject
3636
/// <param name="listId">Your list id. (required).</param>
3737
/// <param name="name">Your campaign name. (required).</param>
3838
/// <param name="body">Your campaign message. (required).</param>
39-
/// <param name="from">Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number..</param>
39+
/// <param name="from">Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids</param>
4040
/// <param name="schedule">Your schedule timestamp. (default to 0).</param>
4141
/// <param name="urlToShorten">url to be shortened add http://smsg.io/xxxxx&#x60; to the body as a placeholder..</param>
4242
public SmsCampaign(int? listId = default(int?), string name = default(string), string body = default(string), string from = default(string), int? schedule = 0, string urlToShorten = default(string))
@@ -103,9 +103,9 @@ public partial class SmsCampaign : IEquatable<SmsCampaign>, IValidatableObject
103103
public string Body { get; set; }
104104

105105
/// <summary>
106-
/// Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number.
106+
/// Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids.
107107
/// </summary>
108-
/// <value>Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number.</value>
108+
/// <value>Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids.</value>
109109
[DataMember(Name="from", EmitDefaultValue=false)]
110110
public string From { get; set; }
111111

src/IO.ClickSend/ClickSend.Model/SmsMessage.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ public partial class SmsMessage : IEquatable<SmsMessage>, IValidatableObject
3333
/// <summary>
3434
/// Initializes a new instance of the <see cref="SmsMessage" /> class.
3535
/// </summary>
36-
/// <param name="from">Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number..</param>
36+
/// <param name="from">Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids</param>
3737
/// <param name="body">Your message. (required).</param>
3838
/// <param name="to">Recipient phone number in E.164 format..</param>
3939
/// <param name="source">Your method of sending e.g. &#x27;wordpress&#x27;, &#x27;php&#x27;, &#x27;c#&#x27;. (default to &quot;sdk&quot;).</param>
40-
/// <param name="schedule">Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp (default to 0).</param>
40+
/// <param name="schedule">Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp (default to 0).</param>
4141
/// <param name="customString">Your reference. Will be passed back with all replies and delivery reports..</param>
4242
/// <param name="listId">Your list ID if sending to a whole list. Can be used instead of &#x27;to&#x27;..</param>
4343
/// <param name="country">Recipient country..</param>
@@ -80,9 +80,9 @@ public partial class SmsMessage : IEquatable<SmsMessage>, IValidatableObject
8080
}
8181

8282
/// <summary>
83-
/// Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number.
83+
/// Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids.
8484
/// </summary>
85-
/// <value>Your sender id - more info: http://help.clicksend.com/SMS/what-is-a-sender-id-or-sender-number.</value>
85+
/// <value>Your sender id - more info: https://help.clicksend.com/en/collections/57584-numbers-sender-ids.</value>
8686
[DataMember(Name="from", EmitDefaultValue=false)]
8787
public string From { get; set; }
8888

@@ -108,9 +108,9 @@ public partial class SmsMessage : IEquatable<SmsMessage>, IValidatableObject
108108
public string Source { get; set; }
109109

110110
/// <summary>
111-
/// Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp
111+
/// Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp
112112
/// </summary>
113-
/// <value>Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp</value>
113+
/// <value>Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp</value>
114114
[DataMember(Name="schedule", EmitDefaultValue=false)]
115115
public int? Schedule { get; set; }
116116

src/IO.ClickSend/ClickSend.Model/VoiceMessage.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public partial class VoiceMessage : IEquatable<VoiceMessage>, IValidatableObjec
4141
/// <param name="source">Your method of sending e.g. &#x27;wordpress&#x27;, &#x27;php&#x27;, &#x27;c#&#x27;. (default to &quot;sdk&quot;).</param>
4242
/// <param name="listId">Your list ID if sending to a whole list. Can be used instead of &#x27;to&#x27;..</param>
4343
/// <param name="lang">au (string, required) - See section on available languages..</param>
44-
/// <param name="schedule">Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp.</param>
44+
/// <param name="schedule">Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp.</param>
4545
/// <param name="requireInput">Whether you want to receive a keypress from the call recipient (default to 0).</param>
4646
/// <param name="machineDetection">Whether to attempt to detect an answering machine or voicemail service and leave a message (default to 0).</param>
4747
public VoiceMessage(string to = default(string), string body = default(string), string voice = default(string), string customString = default(string), string country = default(string), string source = "sdk", int? listId = default(int?), string lang = default(string), int? schedule = default(int?), int? requireInput = 0, int? machineDetection = 0)
@@ -172,9 +172,9 @@ public partial class VoiceMessage : IEquatable<VoiceMessage>, IValidatableObjec
172172
public string Lang { get; set; }
173173

174174
/// <summary>
175-
/// Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp
175+
/// Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp
176176
/// </summary>
177-
/// <value>Leave blank for immediate delivery. Your schedule time in unix format http://help.clicksend.com/what-is-a-unix-timestamp</value>
177+
/// <value>Leave blank for immediate delivery. Your schedule time in unix format https://help.clicksend.com/en/articles/44235-what-is-a-unix-timestamp</value>
178178
[DataMember(Name="schedule", EmitDefaultValue=false)]
179179
public int? Schedule { get; set; }
180180

0 commit comments

Comments
 (0)