cn.authing.core.graphql.GraphQLResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-core Show documentation
Show all versions of java-core Show documentation
java backend sdk for authing
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