MappedApiEntity

internal data class MappedApiEntity(val uuid: String, val originalBaseUrl: String, val routes: List<MappedRouteEntity> = listOf())

Data class representing a mapped API entity.

Constructors

Link copied to clipboard
constructor(uuid: String, originalBaseUrl: String, routes: List<MappedRouteEntity> = listOf())

Properties

Link copied to clipboard

The base URL of the original API.

Link copied to clipboard

List of routes of the mapped API.

Link copied to clipboard

UUID of the mapped API.

Functions

Link copied to clipboard
internal fun toMappedApi(): MappedApi

Converts the MappedApiEntity to a MappedApi.