Package com.twitter.clientlib.model
Class ProblemOrError
- java.lang.Object
-
- com.twitter.clientlib.model.AbstractOpenApiSchema
-
- com.twitter.clientlib.model.ProblemOrError
-
@Generated("org.openapitools.codegen.languages.JavaClientCodegen") public class ProblemOrError extends AbstractOpenApiSchema
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ProblemOrError.CustomTypeAdapterFactory
-
Constructor Summary
Constructors Constructor Description ProblemOrError()
ProblemOrError(Error o)
ProblemOrError(Problem o)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProblemOrError
fromJson(String jsonString)
Create an instance of ProblemOrError given an JSON stringObject
getActualInstance()
Get the actual instance, which can be the following: Error, ProblemError
getError()
Get the actual instance of `Error`.Problem
getProblem()
Get the actual instance of `Problem`.Map<String,javax.ws.rs.core.GenericType>
getSchemas()
Get the list of oneOf/anyOf composed schemas allowed to be stored in this objectvoid
setActualInstance(Object instance)
Set the instance that matches the oneOf child schema, check the instance parameter is valid against the oneOf child schemas: Error, Problem It could be an instance of the 'oneOf' schemas.String
toJson()
Convert an instance of ProblemOrError to an JSON stringstatic void
validateJsonObject(com.google.gson.JsonObject jsonObj)
Validates the JSON Object and throws an exception if issues found-
Methods inherited from class com.twitter.clientlib.model.AbstractOpenApiSchema
equals, getActualInstanceRecursively, getSchemaType, hashCode, isNullable, toString
-
-
-
-
Method Detail
-
getSchemas
public Map<String,javax.ws.rs.core.GenericType> getSchemas()
Description copied from class:AbstractOpenApiSchema
Get the list of oneOf/anyOf composed schemas allowed to be stored in this object- Specified by:
getSchemas
in classAbstractOpenApiSchema
- Returns:
- an instance of the actual schema/object
-
setActualInstance
public void setActualInstance(Object instance)
Set the instance that matches the oneOf child schema, check the instance parameter is valid against the oneOf child schemas: Error, Problem It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a composed schema (allOf, anyOf, oneOf).- Overrides:
setActualInstance
in classAbstractOpenApiSchema
- Parameters:
instance
- the actual instance of the schema/object
-
getActualInstance
public Object getActualInstance()
Get the actual instance, which can be the following: Error, Problem- Overrides:
getActualInstance
in classAbstractOpenApiSchema
- Returns:
- The actual instance (Error, Problem)
-
getError
public Error getError() throws ClassCastException
Get the actual instance of `Error`. If the actual instance is not `Error`, the ClassCastException will be thrown.- Returns:
- The actual instance of `Error`
- Throws:
ClassCastException
- if the instance is not `Error`
-
getProblem
public Problem getProblem() throws ClassCastException
Get the actual instance of `Problem`. If the actual instance is not `Problem`, the ClassCastException will be thrown.- Returns:
- The actual instance of `Problem`
- Throws:
ClassCastException
- if the instance is not `Problem`
-
validateJsonObject
public static void validateJsonObject(com.google.gson.JsonObject jsonObj) throws IOException
Validates the JSON Object and throws an exception if issues found- Parameters:
jsonObj
- JSON Object- Throws:
IOException
- if the JSON Object is invalid with respect to ProblemOrError
-
fromJson
public static ProblemOrError fromJson(String jsonString) throws IOException
Create an instance of ProblemOrError given an JSON string- Parameters:
jsonString
- JSON string- Returns:
- An instance of ProblemOrError
- Throws:
IOException
- if the JSON string is invalid with respect to ProblemOrError
-
toJson
public String toJson()
Convert an instance of ProblemOrError to an JSON string- Returns:
- JSON string
-
-