Package org.openapitools.codegen
Class ObjectWithTypeBooleans
- java.lang.Object
-
- org.openapitools.codegen.ObjectWithTypeBooleans
-
public class ObjectWithTypeBooleans extends Object
-
-
Constructor Summary
Constructors Constructor Description ObjectWithTypeBooleans(Object value)A wrapper class that is used to store payloads to be ingested by schemas This class includes the payload value in the value property Other booleans: isUnboundedInteger/isNumber/isString/isMap/isArray/isBoolean/isNull allow generator templates to decide how to render each payload into code based upon what type it is.
-
-
-
Field Detail
-
isUnboundedInteger
public boolean isUnboundedInteger
-
isNumber
public boolean isNumber
-
isString
public boolean isString
-
isMap
public boolean isMap
-
isArray
public boolean isArray
-
isBoolean
public boolean isBoolean
-
isNull
public boolean isNull
-
value
public Object value
-
-
Constructor Detail
-
ObjectWithTypeBooleans
public ObjectWithTypeBooleans(Object value)
A wrapper class that is used to store payloads to be ingested by schemas This class includes the payload value in the value property Other booleans: isUnboundedInteger/isNumber/isString/isMap/isArray/isBoolean/isNull allow generator templates to decide how to render each payload into code based upon what type it is. The booleans isX describe the value in value.- Parameters:
value- the input payload that is stored
-
-