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

com.ringcentral.definitions.MobileDeliveryModeRequest Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.definitions;


public class MobileDeliveryModeRequest {
    /**
     * Notifications transport type
     * Required
     * Enum: RC/APNS, RC/GCM
     */
    public String transportType;
    /**
     * Certificate name for mobile notification transports
     * Required
     */
    public String certificateName;
    /**
     * Device instance ID for mobile notification transports
     * Required
     * Example: 38b062ae-85f8-4dcc-8734-04d3f7393d42
     */
    public String registrationId;

    public MobileDeliveryModeRequest transportType(String transportType) {
        this.transportType = transportType;
        return this;
    }

    public MobileDeliveryModeRequest certificateName(String certificateName) {
        this.certificateName = certificateName;
        return this;
    }

    public MobileDeliveryModeRequest registrationId(String registrationId) {
        this.registrationId = registrationId;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy