@@ -36,10 +36,11 @@ public VerifySessionInterface(HttpClient client) : base(client)
36
36
/// <param name="brand_name">BrandName.</param>
37
37
/// <param name="app_hash">AppHash.</param>
38
38
/// <param name="code_length">CodeLength.</param>
39
+ /// <param name="dtmf">dtmf.</param>
39
40
40
41
public VerifySessionCreateResponse Create (
41
42
string recipient , string app_uuid = null , string channel = null , string url = null ,
42
- string method = null , string locale = null , string brand_name = null , string app_hash = null , int code_length = 0 )
43
+ string method = null , string locale = null , string brand_name = null , string app_hash = null , int code_length = 0 , int ? dtmf = null )
43
44
{
44
45
Dictionary < string , object > data = null ;
45
46
var mandatoryParams = new List < string > { "recipient" } ;
@@ -55,7 +56,8 @@ public VerifySessionCreateResponse Create(
55
56
locale ,
56
57
brand_name ,
57
58
app_hash ,
58
- code_length
59
+ code_length ,
60
+ dtmf
59
61
} ) ;
60
62
61
63
return ExecuteWithExceptionUnwrap ( ( ) =>
@@ -79,10 +81,11 @@ public VerifySessionCreateResponse Create(
79
81
/// <param name="brand_name">BrandName.</param>
80
82
/// <param name="app_hash">AppHash.</param>
81
83
/// <param name="code_length">CodeLength.</param>
84
+ ///<param name="dtmf">dtmf.</param>
82
85
83
86
public async Task < VerifySessionCreateResponse > CreateAsync (
84
87
string recipient , string app_uuid = null , string channel = null , string url = null ,
85
- string method = null , string locale = null , string brand_name = null , string app_hash = null , int code_length = 0 )
88
+ string method = null , string locale = null , string brand_name = null , string app_hash = null , int code_length = 0 , int ? dtmf = null )
86
89
{
87
90
Dictionary < string , object > data = null ;
88
91
var mandatoryParams = new List < string > { "recipient" } ;
@@ -98,7 +101,8 @@ public async Task<VerifySessionCreateResponse> CreateAsync(
98
101
locale ,
99
102
brand_name ,
100
103
app_hash ,
101
- code_length
104
+ code_length ,
105
+ dtmf
102
106
} ) ;
103
107
104
108
var result = await Client . Update < VerifySessionCreateResponse > ( Uri , data ) ;
0 commit comments