Websites

interface Websites

Namespace for the websites API request and response data classes.

Types

Link copied to clipboard
@Serializable
data class Request(val search: String? = null, val page: Int? = null, val pageSize: Int? = null)

Represents the request parameters for the getWebsites API call.

Link copied to clipboard
@Serializable
data class Response(val data: List<Website>, val count: Long, val page: Int, val pageSize: Int, val orderBy: String)

Represents the response from a successful getWebsites API call.