Skip to content

Instantly share code, notes, and snippets.

@zerogdev
Last active July 23, 2018 12:48
Show Gist options
  • Save zerogdev/5710aa19c11a5ab53205f705874801d3 to your computer and use it in GitHub Desktop.
Save zerogdev/5710aa19c11a5ab53205f705874801d3 to your computer and use it in GitHub Desktop.
public class ShortUrlResult{
String message;
String code;
ShortUrlData result;
public ShortUrlData getResult() {
return result;
}
public String getMessage() {
return message;
}
public String getCode() {
return code;
}
public class ShortUrlData {
String hash;
String url;
String orgUrl;
public String getHash() {
return hash;
}
public String getUrl() {
return url;
}
public String getOrgUrl() {
return orgUrl;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment