/** * Generated by API Builder - https://www.apibuilder.io * Service version: 2.0.1 * User agent: apibuilder app.apibuilder.io/chio/provided_test_app3/2.0.1/http4s_0_20 */ package io.chio.provided.test.app3.v2.mock { object Factories { def randomString(length: Int = 24): String = { _root_.scala.util.Random.alphanumeric.take(length).mkString } def makeGenericError(): io.chio.provided.test.app3.v2.models.GenericError = io.chio.provided.test.app3.v2.models.GenericError( id = _root_.java.util.UUID.randomUUID, timestamp = _root_.java.time.Instant.now, source = None, `type` = None, message = Factories.randomString(24) ) def makeHealthcheck(): io.chio.provided.test.app3.v2.models.Healthcheck = io.chio.provided.test.app3.v2.models.Healthcheck( health = Factories.randomString(24) ) } }