ApiClass

data class ApiClass(val name: String, val packageName: String, val type: String, val methods: List<ApiMethod> = emptyList(), val annotations: List<String> = emptyList(), val superTypes: List<String> = emptyList(), val comment: String? = null)

Constructors

Link copied to clipboard
constructor(name: String, packageName: String, type: String, methods: List<ApiMethod> = emptyList(), annotations: List<String> = emptyList(), superTypes: List<String> = emptyList(), comment: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val comment: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun fqn(): String