Skip to content

Commit 5c925b2

Browse files
committed
Update Authenticate DTO with new accessToken/Secret
1 parent dee45c8 commit 5c925b2

File tree

1 file changed

+11
-1
lines changed
  • src/AndroidClient/androidchat/src/main/java/servicestack/net/androidchat

1 file changed

+11
-1
lines changed

src/AndroidClient/androidchat/src/main/java/servicestack/net/androidchat/dtos.java

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* Options:
2-
Date: 2017-02-15 07:36:14
2+
Date: 2017-02-19 23:57:28
33
Version: 4.00
44
Tip: To override a DTO option, remove "//" prefix before updating
55
BaseUrl: http://chat.servicestack.net
@@ -184,6 +184,12 @@ public static class Authenticate implements IReturn<AuthenticateResponse>, IPost
184184
public Boolean useTokenCookie = null;
185185

186186
@DataMember(Order=16)
187+
public String accessToken = null;
188+
189+
@DataMember(Order=17)
190+
public String accessTokenSecret = null;
191+
192+
@DataMember(Order=18)
187193
public HashMap<String,String> meta = null;
188194

189195
public String getProvider() { return provider; }
@@ -216,6 +222,10 @@ public static class Authenticate implements IReturn<AuthenticateResponse>, IPost
216222
public Authenticate setCnonce(String value) { this.cnonce = value; return this; }
217223
public Boolean isUseTokenCookie() { return useTokenCookie; }
218224
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; }
219229
public HashMap<String,String> getMeta() { return meta; }
220230
public Authenticate setMeta(HashMap<String,String> value) { this.meta = value; return this; }
221231
private static Object responseType = AuthenticateResponse.class;

0 commit comments

Comments
 (0)