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

com.github.sheigutn.pushbullet.http.defaults.post.CreateContactRequest Maven / Gradle / Ivy

The newest version!
package com.github.sheigutn.pushbullet.http.defaults.post;

import com.github.sheigutn.pushbullet.http.PostRequest;
import com.github.sheigutn.pushbullet.items.user.Contact;
import com.github.sheigutn.pushbullet.http.Urls;
import com.google.gson.Gson;
import lombok.Data;
import org.apache.http.client.methods.HttpPost;

@Data
@Deprecated
public class CreateContactRequest extends PostRequest {

    private String name;

    private String email;

    public CreateContactRequest(String name, String email) {
        super(Urls.CONTACTS);
        this.name = name;
        this.email = email;
    }

    @Override
    public void applyBody(Gson gson, HttpPost post) {
        setJsonBody(gson.toJson(this), post);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy