KotlinEndpointGenerationContext

data class KotlinEndpointGenerationContext(val contractTypeName: String, val endpointReference: String, val methodName: String, val summaryLines: List<String>, val detailLines: List<String>, val response: KotlinEndpointResponseModel)(source)

Shared naming and response-shape information exposed to Kotlin endpoint generators.

Constructors

Link copied to clipboard
constructor(contractTypeName: String, endpointReference: String, methodName: String, summaryLines: List<String>, detailLines: List<String>, response: KotlinEndpointResponseModel)

Properties

Link copied to clipboard

generated Kotlin type name for the endpoint contract that owns shared helpers.

Link copied to clipboard

detailed documentation lines rendered from the endpoint details.

Link copied to clipboard

short reference to the original Tapik endpoint definition.

Link copied to clipboard

generated method name used by Kotlin integrations.

Link copied to clipboard

generated public response shape shared by Kotlin integrations.

Link copied to clipboard

summary documentation lines rendered from the endpoint description.