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

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

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


public class FaxCoverPageInfo {
    /**
     * Internal identifier of a fax cover page. The supported value
     * range is 0-13 (for language setting en-US) and 0, 15-28
     * (for all other languages)
     */
    public String id;
    /**
     * Name of a fax cover page pattern
     */
    public String name;

    public FaxCoverPageInfo id(String id) {
        this.id = id;
        return this;
    }

    public FaxCoverPageInfo name(String name) {
        this.name = name;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy