Package com.stripe.param.reporting
Class ReportRunCreateParams.Parameters.Builder
java.lang.Object
com.stripe.param.reporting.ReportRunCreateParams.Parameters.Builder
- Enclosing class:
- ReportRunCreateParams.Parameters
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddAllColumn
(List<String> elements) Add all elements to `columns` list.Add an element to `columns` list.build()
Finalize and obtain parameter instance from this builder.putAllExtraParam
(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putExtraParam
(String key, Object value) Add a key/value pair to `extraParams` map.setConnectedAccount
(String connectedAccount) Connected account ID to filter for in the report run.setCurrency
(String currency) Currency of objects to be included in the report run.setIntervalEnd
(Long intervalEnd) Ending timestamp of data to be included in the report run (exclusive).setIntervalStart
(Long intervalStart) Starting timestamp of data to be included in the report run.Payout ID by which to filter the report run.setReportingCategory
(ReportRunCreateParams.Parameters.ReportingCategory reportingCategory) Category of balance transactions to be included in the report run.Defaults toEtc/UTC
.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
addColumn
Add an element to `columns` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeReportRunCreateParams.Parameters.columns
for the field documentation. -
addAllColumn
Add all elements to `columns` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeReportRunCreateParams.Parameters.columns
for the field documentation. -
setConnectedAccount
Connected account ID to filter for in the report run. -
setCurrency
Currency of objects to be included in the report run. -
putExtraParam
Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeReportRunCreateParams.Parameters.extraParams
for the field documentation. -
putAllExtraParam
Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeReportRunCreateParams.Parameters.extraParams
for the field documentation. -
setIntervalEnd
Ending timestamp of data to be included in the report run (exclusive). -
setIntervalStart
Starting timestamp of data to be included in the report run. -
setPayout
Payout ID by which to filter the report run. -
setReportingCategory
public ReportRunCreateParams.Parameters.Builder setReportingCategory(ReportRunCreateParams.Parameters.ReportingCategory reportingCategory) Category of balance transactions to be included in the report run. -
setTimezone
public ReportRunCreateParams.Parameters.Builder setTimezone(ReportRunCreateParams.Parameters.Timezone timezone) Defaults toEtc/UTC
. The output timezone for all timestamps in the report. A list of possible time zone values is maintained at the IANA Time Zone Database. Has no effect oninterval_start
orinterval_end
.
-