All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.authing.core.graphql.GraphQLResponse.kt Maven / Gradle / Ivy

There is a newer version: 4.3.79
Show newest version
package cn.authing.core.graphql

class GraphQLResponse(val data: T? = null, val errors: List? = null) {
    class ResponseError(val message: ErrorInfo? = null) {}
    class ErrorInfo(val code: Int = 0, val message: String? = null , val data: Any? = null) {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy