-
Notifications
You must be signed in to change notification settings - Fork 2
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 #57 from CallFire/develop
vmalinovskiy: minor fixes for get contacts history api
- Loading branch information
Showing
9 changed files
with
117 additions
and
117 deletions.
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
group = com.callfire | ||
baseName = callfire-api-client | ||
version = 1.7.12 | ||
version = 1.7.13 |
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
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
50 changes: 50 additions & 0 deletions
50
...in/java/com/callfire/api/client/api/numbers/model/request/FindTollfreeNumbersRequest.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,50 @@ | ||
package com.callfire.api.client.api.numbers.model.request; | ||
|
||
import com.callfire.api.client.api.common.model.CallfireModel; | ||
import com.callfire.api.client.api.common.model.request.AbstractBuilder; | ||
import org.apache.commons.lang3.builder.ToStringBuilder; | ||
|
||
public class FindTollfreeNumbersRequest extends CallfireModel { | ||
private String pattern; | ||
private Long limit; | ||
private String fields; | ||
|
||
private FindTollfreeNumbersRequest() { | ||
} | ||
|
||
public static Builder create() { | ||
return new Builder(); | ||
} | ||
|
||
|
||
@Override | ||
public String toString() { | ||
return new ToStringBuilder(this) | ||
.append("pattern", pattern) | ||
.append("limit", limit) | ||
.append("fields", fields) | ||
.toString(); | ||
} | ||
|
||
public static class Builder extends AbstractBuilder<FindTollfreeNumbersRequest> { | ||
|
||
private Builder() { | ||
super(new FindTollfreeNumbersRequest()); | ||
} | ||
|
||
public Builder pattern(String pattern) { | ||
request.pattern = pattern; | ||
return this; | ||
} | ||
|
||
public Builder limit(Long limit) { | ||
request.limit = limit; | ||
return this; | ||
} | ||
|
||
public Builder fields(String fields) { | ||
request.fields = fields; | ||
return this; | ||
} | ||
} | ||
} |
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