ch.viascom.hipchat.api.models.capability.CapabilityLinks 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.capability;
import lombok.Data;
import java.io.Serializable;
/**
* Created by Patrick Bösch on 09.05.16.
*/
@Data
public class CapabilityLinks implements Serializable {
/**
* The URL to this descriptor.
*/
private String self;
/**
* The URL to the REST API root.
*/
private String api;
/**
* The URL to human-viewable home page of this integration
*/
private String homepage;
}