Class TypeAPISupportInfo
Information regarding API support for a User Defined Type
public class TypeAPISupportInfo
- Inheritance
-
TypeAPISupportInfo
- Inherited Members
Properties
CanCreateTable
Can a table be created using this Type?
[JsonPropertyName("createTable")]
public bool CanCreateTable { get; set; }
Property Value
CanFilter
Can this type be used for filtering?
[JsonPropertyName("filter")]
public bool CanFilter { get; set; }
Property Value
CanInsert
Can data be inserted using this Type?
[JsonPropertyName("insert")]
public bool CanInsert { get; set; }
Property Value
CanRead
Can this type be read from the DB?
[JsonPropertyName("read")]
public bool CanRead { get; set; }
Property Value
CqlDefinition
CqlDefinition for this Type
[JsonPropertyName("cqlDefinition")]
public string CqlDefinition { get; set; }