-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from Bandwidth/SWI-5093
SWI-5093 Adding CombinedSearchAndOrder
- Loading branch information
Showing
5 changed files
with
177 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
138 changes: 138 additions & 0 deletions
138
src/main/java/com/bandwidth/iris/sdk/model/CombinedSearchAndOrderType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
package com.bandwidth.iris.sdk.model; | ||
|
||
import javax.xml.bind.annotation.XmlAccessType; | ||
import javax.xml.bind.annotation.XmlAccessorType; | ||
import javax.xml.bind.annotation.XmlElement; | ||
import javax.xml.bind.annotation.XmlRootElement; | ||
|
||
@XmlRootElement(name = "CombinedSearchAndOrderType") | ||
@XmlAccessorType(XmlAccessType.FIELD) | ||
public class CombinedSearchAndOrderType extends BaseOrderType { | ||
@XmlElement(name = "AreaCode") | ||
private String areaCode; | ||
|
||
public String getAreaCode() { | ||
return areaCode; | ||
} | ||
|
||
@XmlElement(name = "City") | ||
private String city; | ||
|
||
public String getCity() { | ||
return city; | ||
} | ||
|
||
public void setCity(String city) { | ||
this.city = city; | ||
} | ||
|
||
@XmlElement(name = "EnableLCA") | ||
private boolean enableLCA; | ||
|
||
public boolean isEnableLCA() { | ||
return enableLCA; | ||
} | ||
|
||
public void setEnableLCA(boolean enableLCA) { | ||
this.enableLCA = enableLCA; | ||
} | ||
|
||
@XmlElement(name = "EndsIn") | ||
private boolean endsIn; | ||
|
||
public boolean isEndsIn() { | ||
return endsIn; | ||
} | ||
|
||
public void setEndsIn(boolean endsIn) { | ||
this.endsIn = endsIn; | ||
} | ||
|
||
@XmlElement(name = "LATA") | ||
private String lata; | ||
|
||
public String getLata() { | ||
return lata; | ||
} | ||
|
||
public void setLata(String lata) { | ||
this.lata = lata; | ||
} | ||
|
||
@XmlElement(name = "LocalVanity") | ||
private String localVanity; | ||
|
||
public String getLocalVanity() { | ||
return localVanity; | ||
} | ||
|
||
public void setLocalVanity(String localVanity) { | ||
this.localVanity = localVanity; | ||
} | ||
|
||
@XmlElement(name = "NpaNxx") | ||
private String npaNxx; | ||
|
||
public String getNpaNxx() { | ||
return npaNxx; | ||
} | ||
|
||
public void setNpaNxx(String npaNxx) { | ||
this.npaNxx = npaNxx; | ||
} | ||
|
||
@XmlElement(name = "NpaNxxX") | ||
private String npaNxxX; | ||
|
||
public String getNpaNxxX() { | ||
return npaNxxX; | ||
} | ||
|
||
public void setNpaNxxX(String npaNxxX) { | ||
this.npaNxxX = npaNxxX; | ||
} | ||
|
||
@XmlElement(name = "Quantity") | ||
private int quantity; | ||
|
||
public int getQuantity() { | ||
return quantity; | ||
} | ||
|
||
public void setQuantity(int quantity) { | ||
this.quantity = quantity; | ||
} | ||
|
||
@XmlElement(name = "RateCenter") | ||
private String rateCenter; | ||
|
||
public String getRateCenter() { | ||
return rateCenter; | ||
} | ||
|
||
public void setRateCenter(String rateCenter) { | ||
this.rateCenter = rateCenter; | ||
} | ||
|
||
@XmlElement(name = "State") | ||
private String state; | ||
|
||
public String getState() { | ||
return state; | ||
} | ||
|
||
public void setState(String state) { | ||
this.state = state; | ||
} | ||
|
||
@XmlElement(name = "Zip") | ||
private String zip; | ||
|
||
public String getZip() { | ||
return zip; | ||
} | ||
|
||
public void setZip(String zip) { | ||
this.zip = zip; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters