
com.github.sheigutn.pushbullet.items.grant.GrantClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pushbullet-java-8 Show documentation
Show all versions of pushbullet-java-8 Show documentation
Pushbullet Library for Java 8
The newest version!
package com.github.sheigutn.pushbullet.items.grant;
import com.github.sheigutn.pushbullet.items.PushbulletIdentifiable;
import com.google.gson.annotations.SerializedName;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.ToString;
@Getter
@ToString(callSuper = true)
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public class GrantClient extends PushbulletIdentifiable {
/**
* The name of this granted client
*/
private String name;
/**
* The url to the image of this granted client
*/
@SerializedName("image_url")
private String imageUrl;
/**
* The url to the website of this granted client
*/
@SerializedName("website_url")
private String websiteUrl;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy