Search Results for

    Show / Hide Table of Contents

    Class BusinessRuleTransformationGroup

    Business rule transformation group:
    A group of transformations to run for the specified inputs

    Inheritance
    object
    BusinessRuleTransformationGroup
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class BusinessRuleTransformationGroup

    Properties

    Description

    Language specific transformation group description.

    Declaration
    [JsonProperty("description", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public TranslatedStringDictionary Description { get; set; }
    Property Value
    TranslatedStringDictionary

    Inputs

    The inputs of the transformation group.

    Declaration
    [JsonProperty("inputs", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ICollection<string> Inputs { get; set; }
    Property Value
    ICollection<string>

    Names

    Language specific transformation group names.

    Declaration
    [JsonProperty("names", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public TranslatedStringDictionary Names { get; set; }
    Property Value
    TranslatedStringDictionary

    StoreIn

    Variable name where the final result should be stored in.

    Declaration
    [JsonProperty("storeIn", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string StoreIn { get; set; }
    Property Value
    string

    TraceRefId

    Optional trace log reference ID set by the system when EnableTracing is set to true on the associated rule.

    Declaration
    [JsonProperty("traceRefId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string TraceRefId { get; set; }
    Property Value
    string

    Transformations

    A list of transformations to apply.

    Declaration
    [JsonProperty("transformations", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ICollection<BusinessRuleTransformation> Transformations { get; set; }
    Property Value
    ICollection<BusinessRuleTransformation>

    Methods

    FromJson(string)

    Declaration
    public static BusinessRuleTransformationGroup FromJson(string data)
    Parameters
    string data

    Returns
    BusinessRuleTransformationGroup

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX