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

com.twilio.rest.notify.v1.service.NotificationCreator Maven / Gradle / Ivy

There is a newer version: 10.2.0
Show newest version
/*
 * This code was generated by
 * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
 *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
 *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
 *
 * Twilio - Notify
 * This is the public Twilio REST API.
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

package com.twilio.rest.notify.v1.service;

import com.twilio.base.Creator;
import com.twilio.converter.Promoter;
import com.twilio.exception.ApiConnectionException;
import com.twilio.converter.Converter;
import com.twilio.exception.ApiException;
import com.twilio.exception.RestException;
import com.twilio.http.HttpMethod;
import com.twilio.http.Request;
import com.twilio.http.Response;
import com.twilio.http.TwilioRestClient;
import com.twilio.rest.Domains;
import java.util.List;
import java.util.Map;
import com.twilio.converter.Converter;

import java.util.List;
import java.util.Map;




/*
    * Twilio - Notify
    *
    * This is the public Twilio REST API.
    *
    * API version: 1.36.0
    * Contact: [email protected]
*/

// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.


public class NotificationCreator extends Creator{
    private String serviceSid;
    private String body;
    private Notification.Priority priority;
    private Integer ttl;
    private String title;
    private String sound;
    private String action;
    private Map data;
    private Map apn;
    private Map gcm;
    private Map sms;
    private Map facebookMessenger;
    private Map fcm;
    private List segment;
    private Map alexa;
    private List toBinding;
    private String deliveryCallbackUrl;
    private List identity;
    private List tag;

    public NotificationCreator(final String serviceSid) {
        this.serviceSid = serviceSid;
    }

    public NotificationCreator setBody(final String body){
        this.body = body;
        return this;
    }
    public NotificationCreator setPriority(final Notification.Priority priority){
        this.priority = priority;
        return this;
    }
    public NotificationCreator setTtl(final Integer ttl){
        this.ttl = ttl;
        return this;
    }
    public NotificationCreator setTitle(final String title){
        this.title = title;
        return this;
    }
    public NotificationCreator setSound(final String sound){
        this.sound = sound;
        return this;
    }
    public NotificationCreator setAction(final String action){
        this.action = action;
        return this;
    }
    public NotificationCreator setData(final Map data){
        this.data = data;
        return this;
    }
    public NotificationCreator setApn(final Map apn){
        this.apn = apn;
        return this;
    }
    public NotificationCreator setGcm(final Map gcm){
        this.gcm = gcm;
        return this;
    }
    public NotificationCreator setSms(final Map sms){
        this.sms = sms;
        return this;
    }
    public NotificationCreator setFacebookMessenger(final Map facebookMessenger){
        this.facebookMessenger = facebookMessenger;
        return this;
    }
    public NotificationCreator setFcm(final Map fcm){
        this.fcm = fcm;
        return this;
    }
    public NotificationCreator setSegment(final List segment){
        this.segment = segment;
        return this;
    }
    public NotificationCreator setSegment(final String segment){
        return setSegment(Promoter.listOfOne(segment));
    }
    public NotificationCreator setAlexa(final Map alexa){
        this.alexa = alexa;
        return this;
    }
    public NotificationCreator setToBinding(final List toBinding){
        this.toBinding = toBinding;
        return this;
    }
    public NotificationCreator setToBinding(final String toBinding){
        return setToBinding(Promoter.listOfOne(toBinding));
    }
    public NotificationCreator setDeliveryCallbackUrl(final String deliveryCallbackUrl){
        this.deliveryCallbackUrl = deliveryCallbackUrl;
        return this;
    }
    public NotificationCreator setIdentity(final List identity){
        this.identity = identity;
        return this;
    }
    public NotificationCreator setIdentity(final String identity){
        return setIdentity(Promoter.listOfOne(identity));
    }
    public NotificationCreator setTag(final List tag){
        this.tag = tag;
        return this;
    }
    public NotificationCreator setTag(final String tag){
        return setTag(Promoter.listOfOne(tag));
    }

    @Override
    public Notification create(final TwilioRestClient client){
        String path = "/v1/Services/{ServiceSid}/Notifications";

        path = path.replace("{"+"ServiceSid"+"}", this.serviceSid.toString());

        Request request = new Request(
            HttpMethod.POST,
            Domains.NOTIFY.toString(),
            path
        );
        addPostParams(request);
        Response response = client.request(request);
        if (response == null) {
            throw new ApiConnectionException("Notification creation failed: Unable to connect to server");
        } else if (!TwilioRestClient.SUCCESS.test(response.getStatusCode())) {
            RestException restException = RestException.fromJson(response.getStream(), client.getObjectMapper());
            if (restException == null) {
                throw new ApiException("Server Error, no content");
            }
            throw new ApiException(restException);
        }

        return Notification.fromJson(response.getStream(), client.getObjectMapper());
    }
    private void addPostParams(final Request request) {
        if (body != null) {
            request.addPostParam("Body", body);
    
        }
        if (priority != null) {
            request.addPostParam("Priority", priority.toString());
    
        }
        if (ttl != null) {
            request.addPostParam("Ttl", ttl.toString());
    
        }
        if (title != null) {
            request.addPostParam("Title", title);
    
        }
        if (sound != null) {
            request.addPostParam("Sound", sound);
    
        }
        if (action != null) {
            request.addPostParam("Action", action);
    
        }
        if (data != null) {
            request.addPostParam("Data",  Converter.mapToJson(data));
    
        }
        if (apn != null) {
            request.addPostParam("Apn",  Converter.mapToJson(apn));
    
        }
        if (gcm != null) {
            request.addPostParam("Gcm",  Converter.mapToJson(gcm));
    
        }
        if (sms != null) {
            request.addPostParam("Sms",  Converter.mapToJson(sms));
    
        }
        if (facebookMessenger != null) {
            request.addPostParam("FacebookMessenger",  Converter.mapToJson(facebookMessenger));
    
        }
        if (fcm != null) {
            request.addPostParam("Fcm",  Converter.mapToJson(fcm));
    
        }
        if (segment != null) {
            for (String prop : segment) {
                request.addPostParam("Segment", prop);
            }
    
        }
        if (alexa != null) {
            request.addPostParam("Alexa",  Converter.mapToJson(alexa));
    
        }
        if (toBinding != null) {
            for (String prop : toBinding) {
                request.addPostParam("ToBinding", prop);
            }
    
        }
        if (deliveryCallbackUrl != null) {
            request.addPostParam("DeliveryCallbackUrl", deliveryCallbackUrl);
    
        }
        if (identity != null) {
            for (String prop : identity) {
                request.addPostParam("Identity", prop);
            }
    
        }
        if (tag != null) {
            for (String prop : tag) {
                request.addPostParam("Tag", prop);
            }
    
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy