Skip to content

Commit ce05092

Browse files
test
1 parent 5c6d8ee commit ce05092

File tree

321 files changed

+3274
-890
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

321 files changed

+3274
-890
lines changed

.swagger-codegen/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.62
1+
3.0.67

docs/AccountActionsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AccountActionsApi
22

3-
All URIs are relative to *https://app.statflo.com*
3+
All URIs are relative to *https://app.test.statflo.com*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------

docs/AccountContactMetadataApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AccountContactMetadataApi
22

3-
All URIs are relative to *https://app.statflo.com*
3+
All URIs are relative to *https://app.test.statflo.com*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------

docs/AccountCredential.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**id** | **Integer** | |
7-
**dealer** | **OneOfAccountCredentialDealer** | | [optional]
7+
**dealer** | [**Dealer**](Dealer.md) | | [optional]
88
**accountSid** | **String** | | [optional]
99
**authToken** | **String** | | [optional]
1010
**secondaryBusinessProfileSid** | **String** | | [optional]

docs/AccountCredentialSummary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**id** | **Integer** | |
7-
**dealer** | **OneOfAccountCredentialSummaryDealer** | | [optional]
7+
**dealer** | [**Dealer**](Dealer.md) | | [optional]
88
**accountSid** | **String** | | [optional]
99
**authToken** | **String** | | [optional]
1010
**secondaryBusinessProfileSid** | **String** | | [optional]

docs/AccountCredentialsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AccountCredentialsApi
22

3-
All URIs are relative to *https://app.statflo.com*
3+
All URIs are relative to *https://app.test.statflo.com*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------

docs/AccountMembersApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AccountMembersApi
22

3-
All URIs are relative to *https://app.statflo.com*
3+
All URIs are relative to *https://app.test.statflo.com*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------

docs/AccountNumber.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# AccountNumber
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**id** | **Integer** | |
7+
**dealer** | [**Dealer**](Dealer.md) | | [optional]
8+
**location** | **String** | | [optional]
9+
**user** | [**User**](User.md) | | [optional]
10+
**phoneNumber** | **String** | | [optional]

docs/AccountNumberApi.md

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
# AccountNumberApi
2+
3+
All URIs are relative to *https://app.test.statflo.com*
4+
5+
Method | HTTP request | Description
6+
------------- | ------------- | -------------
7+
[**accountNumberGet**](AccountNumberApi.md#accountNumberGet) | **GET** /v4/api/account-number/{id} |
8+
[**accountNumberSearch**](AccountNumberApi.md#accountNumberSearch) | **GET** /v4/api/account-number |
9+
10+
<a name="accountNumberGet"></a>
11+
# **accountNumberGet**
12+
> AccountNumber accountNumberGet(id)
13+
14+
15+
16+
Retrieve a message template.
17+
18+
### Example
19+
```java
20+
// Import classes:
21+
//import com.statflo.client.ApiClient;
22+
//import com.statflo.client.ApiException;
23+
//import com.statflo.client.Configuration;
24+
//import com.statflo.client.auth.*;
25+
//import com.statflo.client.api.AccountNumberApi;
26+
27+
ApiClient defaultClient = Configuration.getDefaultApiClient();
28+
29+
30+
AccountNumberApi apiInstance = new AccountNumberApi();
31+
String id = "id_example"; // String |
32+
try {
33+
AccountNumber result = apiInstance.accountNumberGet(id);
34+
System.out.println(result);
35+
} catch (ApiException e) {
36+
System.err.println("Exception when calling AccountNumberApi#accountNumberGet");
37+
e.printStackTrace();
38+
}
39+
```
40+
41+
### Parameters
42+
43+
Name | Type | Description | Notes
44+
------------- | ------------- | ------------- | -------------
45+
**id** | **String**| |
46+
47+
### Return type
48+
49+
[**AccountNumber**](AccountNumber.md)
50+
51+
### Authorization
52+
53+
[Bearer](../README.md#Bearer)
54+
55+
### HTTP request headers
56+
57+
- **Content-Type**: Not defined
58+
- **Accept**: application/json
59+
60+
<a name="accountNumberSearch"></a>
61+
# **accountNumberSearch**
62+
> AccountNumberPaginationResponse accountNumberSearch(filter, query, page, perPage, sort)
63+
64+
65+
66+
Search Account Number.
67+
68+
### Example
69+
```java
70+
// Import classes:
71+
//import com.statflo.client.ApiClient;
72+
//import com.statflo.client.ApiException;
73+
//import com.statflo.client.Configuration;
74+
//import com.statflo.client.auth.*;
75+
//import com.statflo.client.api.AccountNumberApi;
76+
77+
ApiClient defaultClient = Configuration.getDefaultApiClient();
78+
79+
80+
AccountNumberApi apiInstance = new AccountNumberApi();
81+
java.util.HashMap filter = new java.util.HashMap(); // java.util.HashMap |
82+
String query = "query_example"; // String |
83+
Integer page = 56; // Integer |
84+
Integer perPage = 56; // Integer |
85+
String sort = "sort_example"; // String |
86+
try {
87+
AccountNumberPaginationResponse result = apiInstance.accountNumberSearch(filter, query, page, perPage, sort);
88+
System.out.println(result);
89+
} catch (ApiException e) {
90+
System.err.println("Exception when calling AccountNumberApi#accountNumberSearch");
91+
e.printStackTrace();
92+
}
93+
```
94+
95+
### Parameters
96+
97+
Name | Type | Description | Notes
98+
------------- | ------------- | ------------- | -------------
99+
**filter** | [**java.util.HashMap**](.md)| | [optional]
100+
**query** | **String**| | [optional]
101+
**page** | **Integer**| | [optional]
102+
**perPage** | **Integer**| | [optional]
103+
**sort** | **String**| | [optional]
104+
105+
### Return type
106+
107+
[**AccountNumberPaginationResponse**](AccountNumberPaginationResponse.md)
108+
109+
### Authorization
110+
111+
[Bearer](../README.md#Bearer)
112+
113+
### HTTP request headers
114+
115+
- **Content-Type**: Not defined
116+
- **Accept**: application/json
117+
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# AccountNumberPaginationResponse
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**items** | [**List&lt;AccountNumber&gt;**](AccountNumber.md) | | [optional]
7+
**pagination** | [**Pagination**](Pagination.md) | | [optional]

0 commit comments

Comments
 (0)