|
1 | 1 | /* Options: |
2 | | -Date: 2017-02-15 07:36:14 |
| 2 | +Date: 2017-02-19 23:57:28 |
3 | 3 | Version: 4.00 |
4 | 4 | Tip: To override a DTO option, remove "//" prefix before updating |
5 | 5 | BaseUrl: http://chat.servicestack.net |
@@ -184,6 +184,12 @@ public static class Authenticate implements IReturn<AuthenticateResponse>, IPost |
184 | 184 | public Boolean useTokenCookie = null; |
185 | 185 |
|
186 | 186 | @DataMember(Order=16) |
| 187 | + public String accessToken = null; |
| 188 | + |
| 189 | + @DataMember(Order=17) |
| 190 | + public String accessTokenSecret = null; |
| 191 | + |
| 192 | + @DataMember(Order=18) |
187 | 193 | public HashMap<String,String> meta = null; |
188 | 194 |
|
189 | 195 | public String getProvider() { return provider; } |
@@ -216,6 +222,10 @@ public static class Authenticate implements IReturn<AuthenticateResponse>, IPost |
216 | 222 | public Authenticate setCnonce(String value) { this.cnonce = value; return this; } |
217 | 223 | public Boolean isUseTokenCookie() { return useTokenCookie; } |
218 | 224 | public Authenticate setUseTokenCookie(Boolean value) { this.useTokenCookie = value; return this; } |
| 225 | + public String getAccessToken() { return accessToken; } |
| 226 | + public Authenticate setAccessToken(String value) { this.accessToken = value; return this; } |
| 227 | + public String getAccessTokenSecret() { return accessTokenSecret; } |
| 228 | + public Authenticate setAccessTokenSecret(String value) { this.accessTokenSecret = value; return this; } |
219 | 229 | public HashMap<String,String> getMeta() { return meta; } |
220 | 230 | public Authenticate setMeta(HashMap<String,String> value) { this.meta = value; return this; } |
221 | 231 | private static Object responseType = AuthenticateResponse.class; |
|
0 commit comments