-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
56 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/** | ||
* | ||
*/ | ||
package me.figo.models; | ||
|
||
import java.util.Map; | ||
|
||
import com.google.gson.annotations.Expose; | ||
|
||
/** | ||
* @author Daniel | ||
* | ||
*/ | ||
public class AuthMethod { | ||
|
||
@Expose | ||
private String id; | ||
|
||
@Expose | ||
private String medium_name; | ||
|
||
@Expose | ||
private String type; | ||
|
||
@Expose | ||
private Map<String,String> additional_info; | ||
|
||
public String getId() { | ||
return id; | ||
} | ||
|
||
public String getMedium_name() { | ||
return medium_name; | ||
} | ||
|
||
public String getType() { | ||
return type; | ||
} | ||
|
||
public Map<String, String> getAdditional_info() { | ||
return additional_info; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters