Json
    class JsonArrayApiAction<M : PenicillinModel>(    val client: ApiClient,     val request: ApiRequest,     val converter: (JsonObject) -> M) : AbstractFlow<M> , JsonRequest<M> , ApiAction<JsonArrayResponse<M>> 
Content copied to clipboard
The ApiAction that provides parsed json array with json model.
Constructors
Link copied to clipboard
                fun <M : PenicillinModel> JsonArrayApiAction(    client: ApiClient,     request: ApiRequest,     converter: (JsonObject) -> M)
Content copied to clipboard
Functions
Link copied to clipboard
                Link copied to clipboard
                Executes ApiAction and returns its result. This function is suspendable.