org.apache.camel.component.twilio.AddressEndpointConfiguration 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.Address
*/
@UriParams
public final class AddressEndpointConfiguration extends TwilioConfiguration {
@UriParam
private String city;
@UriParam
private String customerName;
@UriParam
private String isoCountry;
@UriParam
private String pathAccountSid;
@UriParam
private String pathSid;
@UriParam
private String postalCode;
@UriParam
private String region;
@UriParam
private String street;
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getIsoCountry() {
return isoCountry;
}
public void setIsoCountry(String isoCountry) {
this.isoCountry = isoCountry;
}
public String getPathAccountSid() {
return pathAccountSid;
}
public void setPathAccountSid(String pathAccountSid) {
this.pathAccountSid = pathAccountSid;
}
public String getPathSid() {
return pathSid;
}
public void setPathSid(String pathSid) {
this.pathSid = pathSid;
}
public String getPostalCode() {
return postalCode;
}
public void setPostalCode(String postalCode) {
this.postalCode = postalCode;
}
public String getRegion() {
return region;
}
public void setRegion(String region) {
this.region = region;
}
public String getStreet() {
return street;
}
public void setStreet(String street) {
this.street = street;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy