Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import java.util.UUID
* @param[application] Instance of the [Application].
* @param[projectId] Project ID.
* @param[debug] Enables debug mode. Default value is _false_. __Note:__ debug logs may contain sensitive data.
* @param[enableTelemetry] Enables sending telemetry data to ProcessOut. Default value is _false_.
* @param[enableTelemetry] Enables sending telemetry data to ProcessOut. Default value is _true_.
* @param[applicationInformation] Application information that helps ProcessOut to troubleshoot potential issues.
*/
data class ProcessOutConfiguration(
val application: Application,
val projectId: String,
val debug: Boolean = false,
val enableTelemetry: Boolean = false,
val enableTelemetry: Boolean = true,
val applicationInformation: ApplicationInformation? = null
) {

Expand Down