All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.sheigutn.pushbullet.items.grant.GrantClient Maven / Gradle / Ivy

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