org.apache.camel.component.twilio.MobileEndpointConfiguration 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
*/
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.incomingphonenumber.Mobile
*/
@UriParams
public final class MobileEndpointConfiguration extends TwilioConfiguration {
@UriParam
private String pathAccountSid;
@UriParam
private com.twilio.type.PhoneNumber phoneNumber;
public String getPathAccountSid() {
return pathAccountSid;
}
public void setPathAccountSid(String pathAccountSid) {
this.pathAccountSid = pathAccountSid;
}
public com.twilio.type.PhoneNumber getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(com.twilio.type.PhoneNumber phoneNumber) {
this.phoneNumber = phoneNumber;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy