Package org.drinkless.tdlib
Class TdApi.JsonValueArray
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.JsonValue
-
- org.drinkless.tdlib.TdApi.JsonValueArray
-
- Enclosing class:
- TdApi
public static class TdApi.JsonValueArray extends TdApi.JsonValue
Represents a JSON array.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.TdApi.JsonValue[]valuesThe list of array elements.
-
Constructor Summary
Constructors Constructor Description JsonValueArray()Represents a JSON array.JsonValueArray(TdApi.JsonValue[] values)Represents a JSON array.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
values
public TdApi.JsonValue[] values
The list of array elements.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JsonValueArray
public JsonValueArray()
Represents a JSON array.
-
JsonValueArray
public JsonValueArray(TdApi.JsonValue[] values)
Represents a JSON array.- Parameters:
values- The list of array elements.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-