Package com.stripe.param.v2.reporting
Class ReportRunCreateParams.Builder
java.lang.Object
com.stripe.param.v2.reporting.ReportRunCreateParams.Builder
- Enclosing class:
- ReportRunCreateParams
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()
Finalize and obtain parameter instance from this builder.putAllExtraParam
(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.Add all map key/value pairs to `reportParameters` map.putExtraParam
(String key, Object value) Add a key/value pair to `extraParams` map.Add a key/value pair to `reportParameters` map.Required. The unique identifier of theReport
being requested.setResultOptions
(ReportRunCreateParams.ResultOptions resultOptions) Optional settings to customize the results of theReportRun
.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
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.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.extraParams
for the field documentation. -
setReport
Required. The unique identifier of theReport
being requested. -
putReportParameter
public ReportRunCreateParams.Builder putReportParameter(String key, ReportRunCreateParams.ReportParameter value) Add a key/value pair to `reportParameters` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeReportRunCreateParams.reportParameters
for the field documentation. -
putAllReportParameter
public ReportRunCreateParams.Builder putAllReportParameter(Map<String, ReportRunCreateParams.ReportParameter> map) Add all map key/value pairs to `reportParameters` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeReportRunCreateParams.reportParameters
for the field documentation. -
setResultOptions
public ReportRunCreateParams.Builder setResultOptions(ReportRunCreateParams.ResultOptions resultOptions) Optional settings to customize the results of theReportRun
.
-