package com.hexagonkt.http.modeldata class Authorization( val type: String, val value: String,) { val text: String by lazy { "$type $value" }}