Skip to content

Commit ac70ac1

Browse files
committed
Regenerate classes
1 parent 4f09fae commit ac70ac1

283 files changed

Lines changed: 79127 additions & 15294 deletions

File tree

Some content is hidden

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

brevo-java-client/src/generated/java/software/xdev/brevo/api/AccountApi.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,14 @@ public GetAccount getAccount(Map<String, String> additionalHeaders) throws ApiEx
114114
*
115115
* @param startDate Mandatory if endDate is used. Enter start date in UTC date (YYYY-MM-DD) format to filter the activity in your account. Maximum time period that can be selected is one month. Additionally, you can retrieve activity logs from the past 12 months from the date of your search. (optional)
116116
* @param endDate Mandatory if startDate is used. Enter end date in UTC date (YYYY-MM-DD) format to filter the activity in your account. Maximum time period that can be selected is one month. (optional)
117+
* @param email Enter the user&#39;s email address to filter their activity in the account. (optional)
117118
* @param limit Number of documents per page (optional, default to 10)
118119
* @param offset Index of the first document in the page. (optional, default to 0)
119120
* @return GetAccountActivity
120121
* @throws ApiException if fails to make API call
121122
*/
122-
public GetAccountActivity getAccountActivity(String startDate, String endDate, Long limit, Long offset) throws ApiException {
123-
return this.getAccountActivity(startDate, endDate, limit, offset, Collections.emptyMap());
123+
public GetAccountActivity getAccountActivity(@jakarta.annotation.Nullable String startDate, @jakarta.annotation.Nullable String endDate, @jakarta.annotation.Nullable String email, @jakarta.annotation.Nullable Long limit, @jakarta.annotation.Nullable Long offset) throws ApiException {
124+
return this.getAccountActivity(startDate, endDate, email, limit, offset, Collections.emptyMap());
124125
}
125126

126127

@@ -129,13 +130,14 @@ public GetAccountActivity getAccountActivity(String startDate, String endDate, L
129130
*
130131
* @param startDate Mandatory if endDate is used. Enter start date in UTC date (YYYY-MM-DD) format to filter the activity in your account. Maximum time period that can be selected is one month. Additionally, you can retrieve activity logs from the past 12 months from the date of your search. (optional)
131132
* @param endDate Mandatory if startDate is used. Enter end date in UTC date (YYYY-MM-DD) format to filter the activity in your account. Maximum time period that can be selected is one month. (optional)
133+
* @param email Enter the user&#39;s email address to filter their activity in the account. (optional)
132134
* @param limit Number of documents per page (optional, default to 10)
133135
* @param offset Index of the first document in the page. (optional, default to 0)
134136
* @param additionalHeaders additionalHeaders for this call
135137
* @return GetAccountActivity
136138
* @throws ApiException if fails to make API call
137139
*/
138-
public GetAccountActivity getAccountActivity(String startDate, String endDate, Long limit, Long offset, Map<String, String> additionalHeaders) throws ApiException {
140+
public GetAccountActivity getAccountActivity(@jakarta.annotation.Nullable String startDate, @jakarta.annotation.Nullable String endDate, @jakarta.annotation.Nullable String email, @jakarta.annotation.Nullable Long limit, @jakarta.annotation.Nullable Long offset, Map<String, String> additionalHeaders) throws ApiException {
139141
Object localVarPostBody = null;
140142

141143
// create path and map variables
@@ -151,6 +153,7 @@ public GetAccountActivity getAccountActivity(String startDate, String endDate, L
151153

152154
localVarQueryParams.addAll(apiClient.parameterToPair("startDate", startDate));
153155
localVarQueryParams.addAll(apiClient.parameterToPair("endDate", endDate));
156+
localVarQueryParams.addAll(apiClient.parameterToPair("email", email));
154157
localVarQueryParams.addAll(apiClient.parameterToPair("limit", limit));
155158
localVarQueryParams.addAll(apiClient.parameterToPair("offset", offset));
156159

0 commit comments

Comments
 (0)