ch.viascom.hipchat.api.models.card.CardIcon Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hipchat-api Show documentation
Show all versions of hipchat-api Show documentation
A HipChat v2 API full implementation for Java
package ch.viascom.hipchat.api.models.card;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
/**
* Created by patrickboesch on 11.04.16.
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class CardIcon implements Serializable {
private String url;
@SerializedName("url@2x")
private String url2x; //REPLACE with url@2x
}