Added Android code
[wl-app.git] / Android / app / src / main / java / com / moiseum / wolnelektury / connection / models / OAuthTokenModel.java
1 package com.moiseum.wolnelektury.connection.models;
2
3 import com.google.gson.annotations.SerializedName;
4
5 import org.parceler.Parcel;
6
7 /**
8  * Created by Piotr Ostrowski on 11.06.2018.
9  */
10 @Parcel(Parcel.Serialization.BEAN)
11 public class OAuthTokenModel {
12
13         @SerializedName("oauth_token_secret")
14         private String tokenSecret;
15         @SerializedName("oauth_token")
16         private String token;
17
18         public OAuthTokenModel() {
19         }
20
21         public String getTokenSecret() {
22                 return tokenSecret;
23         }
24
25         public void setTokenSecret(String tokenSecret) {
26                 this.tokenSecret = tokenSecret;
27         }
28
29         public String getToken() {
30                 return token;
31         }
32
33         public void setToken(String token) {
34                 this.token = token;
35         }
36 }