Class V2RetrieveReportResponse.Builder
-
- All Implemented Interfaces:
public final class V2RetrieveReportResponse.BuilderA builder for V2RetrieveReportResponse.
-
-
Method Summary
-
-
Method Detail
-
authRuleToken
final V2RetrieveReportResponse.Builder authRuleToken(String authRuleToken)
Auth Rule Token
-
authRuleToken
final V2RetrieveReportResponse.Builder authRuleToken(JsonField<String> authRuleToken)
Sets Builder.authRuleToken to an arbitrary JSON value.
You should usually call Builder.authRuleToken with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
begin
final V2RetrieveReportResponse.Builder begin(LocalDate begin)
The start date (UTC) of the report.
-
begin
final V2RetrieveReportResponse.Builder begin(JsonField<LocalDate> begin)
Sets Builder.begin to an arbitrary JSON value.
You should usually call Builder.begin with a well-typed LocalDate value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
dailyStatistics
final V2RetrieveReportResponse.Builder dailyStatistics(List<V2RetrieveReportResponse.DailyStatistic> dailyStatistics)
Daily evaluation statistics for the Auth Rule.
-
dailyStatistics
final V2RetrieveReportResponse.Builder dailyStatistics(JsonField<List<V2RetrieveReportResponse.DailyStatistic>> dailyStatistics)
Sets Builder.dailyStatistics to an arbitrary JSON value.
You should usually call Builder.dailyStatistics with a well-typed
List<DailyStatistic>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addDailyStatistic
final V2RetrieveReportResponse.Builder addDailyStatistic(V2RetrieveReportResponse.DailyStatistic dailyStatistic)
Adds a single DailyStatistic to dailyStatistics.
-
end
final V2RetrieveReportResponse.Builder end(LocalDate end)
The end date (UTC) of the report.
-
end
final V2RetrieveReportResponse.Builder end(JsonField<LocalDate> end)
Sets Builder.end to an arbitrary JSON value.
You should usually call Builder.end with a well-typed LocalDate value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final V2RetrieveReportResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final V2RetrieveReportResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final V2RetrieveReportResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final V2RetrieveReportResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final V2RetrieveReportResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final V2RetrieveReportResponse build()
Returns an immutable instance of V2RetrieveReportResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.authRuleToken() .begin() .dailyStatistics() .end()
-
-
-
-