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

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

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


public class RegAnswerModel {
    /**
     * ID of the custom question
     * Required
     * Example: 123456789
     */
    public String questionId;
    /**
     * The list of answer IDs
     * Required
     */
    public String[] answerIds;
    /**
     * Answer text
     * Required
     */
    public String answerText;

    public RegAnswerModel questionId(String questionId) {
        this.questionId = questionId;
        return this;
    }

    public RegAnswerModel answerIds(String[] answerIds) {
        this.answerIds = answerIds;
        return this;
    }

    public RegAnswerModel answerText(String answerText) {
        this.answerText = answerText;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy