Interface ITableAttribute
Represents an table attribute.
Inherited Members
Namespace: BiExcellence.OpenBi.Api.Commands.TableAttributes
Assembly: BiExcellence.OpenBi.Api.TableAttribute.dll
Syntax
[TableAttribute("TABLEATTRIBUTES")]
public interface ITableAttribute : ICustomAttributes
Properties
DefaultValue
Gets or sets the default value.
Declaration
object? DefaultValue { get; set; }
Property Value
Type | Description |
---|---|
object |
DefaultValues
Gets or sets the default values.
Declaration
Array? DefaultValues { get; set; }
Property Value
Type | Description |
---|---|
Array |
Remarks
To remove all values set it to an empty array.
IsExclusive
Gets or sets whether the default values are exclusive.
Declaration
bool IsExclusive { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsMultiple
Gets or sets whether the attribute is multiple.
Declaration
bool IsMultiple { get; set; }
Property Value
Type | Description |
---|---|
bool |
Length
Gets or sets the optional length.
Declaration
int? Length { get; set; }
Property Value
Type | Description |
---|---|
int? |
Methods
Deserialize(string?)
Deserializes the object based on the Type.
Declaration
object? Deserialize(string? obj)
Parameters
Type | Name | Description |
---|---|---|
string | obj | The obejct. |
Returns
Type | Description |
---|---|
object | The deserialized object. |
Deserialize(JsonElement)
Deserializes the json element based on the Type.
Declaration
object? Deserialize(JsonElement element)
Parameters
Type | Name | Description |
---|---|---|
JsonElement | element | The json element. |
Returns
Type | Description |
---|---|
object | The deserialized object. |