Skip to main content

Class ConfigurableScreenDelta

Namespace: SuperOffice.WebApi.Data
Assembly: SuperOffice.WebApi.dll
Carrier object for ConfigurableScreenDelta. Configurable Screen Delta represents a list of changes to a SCIL recipe.

Inheritance

objectCarrierConfigurableScreenDelta

Inherited Members

Carrier.TableRight, Carrier.FieldProperties, object.ToString(), object.Equals(object), object.Equals(object, object), object.ReferenceEquals(object, object), object.GetHashCode(), object.GetType(), object.MemberwiseClone()

Examples

Get ConfigurableScreenDelta 123 using the WebApi client:
var configuration = new WebApiConfiguration(url);
var agent = new ConfigurationAgent(configuration);
var configurableScreenDelta = agent.GetConfigurableScreenDelta( 123 );

Constructors

ConfigurableScreenDelta()

Default constructor - defaults any enum props to 0.

Properties

AppliesToIds

Ids to which type will have this delta applied to their resulting ui. Type depends on configuration. Like project type, more types probably to come

Property Value

int[]

AppliesToKey

What property to use to differ on configs. Like UserGroup or ProjectType. (Read only, can only be set on recipe level)

Property Value

string

ConfigurableScreenDeltaId

The delta database id

Property Value

int

CreatedBy

The user that created the ConfigurableScreenDelta

Property Value

Associate

CreatedDate

Date registered

Property Value

DateTime

DeltaJson

The delta as a JSON

Property Value

string

DeltaState

The delta state, like draft, published NULL if unknown enum value.

Property Value

DeltaState?

See Also

ConfigurableScreenDelta.DeltaState_String

DeltaState_String

The delta state, like draft, published Raw string enum value.

Property Value

string

See Also

ConfigurableScreenDelta.DeltaState

DeltaType

The delta type, like webpanel, udef, system NULL if unknown enum value.

Property Value

DeltaType?

See Also

ConfigurableScreenDelta.DeltaType_String

DeltaType_String

The delta type, like webpanel, udef, system Raw string enum value.

Property Value

string

See Also

ConfigurableScreenDelta.DeltaType

Description

The description of the delta

Property Value

string

Name

The name of the delta

Property Value

string

RecipeId

Name to identify the recipe that the deltas will modify

Property Value

string

UpdatedBy

The user that last updated the ConfigurableScreenDelta

Property Value

Associate

UpdatedDate

Date last updated

Property Value

DateTime

See Also

ConfigurationAgent