CDNRequest

data class CDNRequest(val url: String, val headers: Map<String, String>? = null)

Model representing the request for loading a file from a CDN.

Parameters

url

Url of the file to load.

headers

Map of headers added to the request.

Constructors

Link copied to clipboard
constructor(url: String, headers: Map<String, String>? = null)

Properties

Link copied to clipboard
val headers: Map<String, String>? = null
Link copied to clipboard
val url: String