You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FairEmail/app/src/main/java/com/bugsnag/android/DeliveryParams.kt

18 lines
345 B

package com.bugsnag.android
/**
* The parameters which should be used to deliver an Event/Session.
*/
class DeliveryParams(
/**
* The endpoint to which the payload should be sent
*/
val endpoint: String,
/**
* The HTTP headers which must be attached to the request
*/
val headers: Map<String, String?>
)