org.apache.camel.component.twilio.ParticipantEndpointConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-twilio Show documentation
Show all versions of camel-twilio Show documentation
Camel Component for Twilio
/*
* Camel EndpointConfiguration generated by camel-api-component-maven-plugin
* Generated on: Sun Jan 06 18:30:08 UTC 2019
*/
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