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

com.revinate.sendgrid.resource.IpResource Maven / Gradle / Ivy

The newest version!
package com.revinate.sendgrid.resource;

import com.revinate.sendgrid.exception.SendGridException;
import com.revinate.sendgrid.model.Ip;
import com.revinate.sendgrid.net.SendGridHttpClient;
import com.revinate.sendgrid.net.auth.Credential;

import java.util.Map;

public class IpResource extends EntityResource {

    public IpResource(String baseUrl, SendGridHttpClient client, Credential credential, Ip ip) {
        super(baseUrl, client, credential, Ip.class, ip);
    }

    public IpResource(String baseUrl, SendGridHttpClient client, Credential credential, String id) {
        super(baseUrl, client, credential, Ip.class, id);
    }

    @Override
    public Ip update(Ip ip) throws SendGridException {
        throw unsupported();
    }

    @Override
    public Ip partialUpdate(Map requestObject) throws SendGridException {
        throw unsupported();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy