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

org.apache.camel.component.twilio.ParticipantEndpointConfiguration Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version

/*
 * Camel EndpointConfiguration generated by camel-api-component-maven-plugin
 */
package org.apache.camel.component.twilio;

import org.apache.camel.spi.UriParam;
import org.apache.camel.spi.UriParams;

/**
 * Camel EndpointConfiguration for com.twilio.rest.api.v2010.account.conference.Participant
 */
@UriParams
public final class ParticipantEndpointConfiguration extends TwilioConfiguration {

    @UriParam
    private com.twilio.type.PhoneNumber from;

    @UriParam
    private String pathAccountSid;

    @UriParam
    private String pathCallSid;

    @UriParam
    private String pathConferenceSid;

    @UriParam
    private com.twilio.type.PhoneNumber to;

    public com.twilio.type.PhoneNumber getFrom() {
        return from;
    }

    public void setFrom(com.twilio.type.PhoneNumber from) {
        this.from = from;
    }

    public String getPathAccountSid() {
        return pathAccountSid;
    }

    public void setPathAccountSid(String pathAccountSid) {
        this.pathAccountSid = pathAccountSid;
    }

    public String getPathCallSid() {
        return pathCallSid;
    }

    public void setPathCallSid(String pathCallSid) {
        this.pathCallSid = pathCallSid;
    }

    public String getPathConferenceSid() {
        return pathConferenceSid;
    }

    public void setPathConferenceSid(String pathConferenceSid) {
        this.pathConferenceSid = pathConferenceSid;
    }

    public com.twilio.type.PhoneNumber getTo() {
        return to;
    }

    public void setTo(com.twilio.type.PhoneNumber to) {
        this.to = to;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy