/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the customer-profiles-2020-08-15.normal.json service model.
*/
using System;
using Amazon.Runtime;
namespace Amazon.CustomerProfiles
{
///
/// Constants used for properties of type AttributeMatchingModel.
///
public class AttributeMatchingModel : ConstantClass
{
///
/// Constant MANY_TO_MANY for AttributeMatchingModel
///
public static readonly AttributeMatchingModel MANY_TO_MANY = new AttributeMatchingModel("MANY_TO_MANY");
///
/// Constant ONE_TO_ONE for AttributeMatchingModel
///
public static readonly AttributeMatchingModel ONE_TO_ONE = new AttributeMatchingModel("ONE_TO_ONE");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public AttributeMatchingModel(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static AttributeMatchingModel FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator AttributeMatchingModel(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ConflictResolvingModel.
///
public class ConflictResolvingModel : ConstantClass
{
///
/// Constant RECENCY for ConflictResolvingModel
///
public static readonly ConflictResolvingModel RECENCY = new ConflictResolvingModel("RECENCY");
///
/// Constant SOURCE for ConflictResolvingModel
///
public static readonly ConflictResolvingModel SOURCE = new ConflictResolvingModel("SOURCE");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public ConflictResolvingModel(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static ConflictResolvingModel FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator ConflictResolvingModel(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DataPullMode.
///
public class DataPullMode : ConstantClass
{
///
/// Constant Complete for DataPullMode
///
public static readonly DataPullMode Complete = new DataPullMode("Complete");
///
/// Constant Incremental for DataPullMode
///
public static readonly DataPullMode Incremental = new DataPullMode("Incremental");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public DataPullMode(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static DataPullMode FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator DataPullMode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type EventStreamDestinationStatus.
///
public class EventStreamDestinationStatus : ConstantClass
{
///
/// Constant HEALTHY for EventStreamDestinationStatus
///
public static readonly EventStreamDestinationStatus HEALTHY = new EventStreamDestinationStatus("HEALTHY");
///
/// Constant UNHEALTHY for EventStreamDestinationStatus
///
public static readonly EventStreamDestinationStatus UNHEALTHY = new EventStreamDestinationStatus("UNHEALTHY");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public EventStreamDestinationStatus(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static EventStreamDestinationStatus FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator EventStreamDestinationStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type EventStreamState.
///
public class EventStreamState : ConstantClass
{
///
/// Constant RUNNING for EventStreamState
///
public static readonly EventStreamState RUNNING = new EventStreamState("RUNNING");
///
/// Constant STOPPED for EventStreamState
///
public static readonly EventStreamState STOPPED = new EventStreamState("STOPPED");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public EventStreamState(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static EventStreamState FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator EventStreamState(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FieldContentType.
///
public class FieldContentType : ConstantClass
{
///
/// Constant EMAIL_ADDRESS for FieldContentType
///
public static readonly FieldContentType EMAIL_ADDRESS = new FieldContentType("EMAIL_ADDRESS");
///
/// Constant NAME for FieldContentType
///
public static readonly FieldContentType NAME = new FieldContentType("NAME");
///
/// Constant NUMBER for FieldContentType
///
public static readonly FieldContentType NUMBER = new FieldContentType("NUMBER");
///
/// Constant PHONE_NUMBER for FieldContentType
///
public static readonly FieldContentType PHONE_NUMBER = new FieldContentType("PHONE_NUMBER");
///
/// Constant STRING for FieldContentType
///
public static readonly FieldContentType STRING = new FieldContentType("STRING");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public FieldContentType(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static FieldContentType FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator FieldContentType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type Gender.
///
public class Gender : ConstantClass
{
///
/// Constant FEMALE for Gender
///
public static readonly Gender FEMALE = new Gender("FEMALE");
///
/// Constant MALE for Gender
///
public static readonly Gender MALE = new Gender("MALE");
///
/// Constant UNSPECIFIED for Gender
///
public static readonly Gender UNSPECIFIED = new Gender("UNSPECIFIED");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public Gender(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static Gender FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator Gender(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type IdentityResolutionJobStatus.
///
public class IdentityResolutionJobStatus : ConstantClass
{
///
/// Constant COMPLETED for IdentityResolutionJobStatus
///
public static readonly IdentityResolutionJobStatus COMPLETED = new IdentityResolutionJobStatus("COMPLETED");
///
/// Constant FAILED for IdentityResolutionJobStatus
///
public static readonly IdentityResolutionJobStatus FAILED = new IdentityResolutionJobStatus("FAILED");
///
/// Constant FIND_MATCHING for IdentityResolutionJobStatus
///
public static readonly IdentityResolutionJobStatus FIND_MATCHING = new IdentityResolutionJobStatus("FIND_MATCHING");
///
/// Constant MERGING for IdentityResolutionJobStatus
///
public static readonly IdentityResolutionJobStatus MERGING = new IdentityResolutionJobStatus("MERGING");
///
/// Constant PARTIAL_SUCCESS for IdentityResolutionJobStatus
///
public static readonly IdentityResolutionJobStatus PARTIAL_SUCCESS = new IdentityResolutionJobStatus("PARTIAL_SUCCESS");
///
/// Constant PENDING for IdentityResolutionJobStatus
///
public static readonly IdentityResolutionJobStatus PENDING = new IdentityResolutionJobStatus("PENDING");
///
/// Constant PREPROCESSING for IdentityResolutionJobStatus
///
public static readonly IdentityResolutionJobStatus PREPROCESSING = new IdentityResolutionJobStatus("PREPROCESSING");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public IdentityResolutionJobStatus(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static IdentityResolutionJobStatus FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator IdentityResolutionJobStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type JobScheduleDayOfTheWeek.
///
public class JobScheduleDayOfTheWeek : ConstantClass
{
///
/// Constant FRIDAY for JobScheduleDayOfTheWeek
///
public static readonly JobScheduleDayOfTheWeek FRIDAY = new JobScheduleDayOfTheWeek("FRIDAY");
///
/// Constant MONDAY for JobScheduleDayOfTheWeek
///
public static readonly JobScheduleDayOfTheWeek MONDAY = new JobScheduleDayOfTheWeek("MONDAY");
///
/// Constant SATURDAY for JobScheduleDayOfTheWeek
///
public static readonly JobScheduleDayOfTheWeek SATURDAY = new JobScheduleDayOfTheWeek("SATURDAY");
///
/// Constant SUNDAY for JobScheduleDayOfTheWeek
///
public static readonly JobScheduleDayOfTheWeek SUNDAY = new JobScheduleDayOfTheWeek("SUNDAY");
///
/// Constant THURSDAY for JobScheduleDayOfTheWeek
///
public static readonly JobScheduleDayOfTheWeek THURSDAY = new JobScheduleDayOfTheWeek("THURSDAY");
///
/// Constant TUESDAY for JobScheduleDayOfTheWeek
///
public static readonly JobScheduleDayOfTheWeek TUESDAY = new JobScheduleDayOfTheWeek("TUESDAY");
///
/// Constant WEDNESDAY for JobScheduleDayOfTheWeek
///
public static readonly JobScheduleDayOfTheWeek WEDNESDAY = new JobScheduleDayOfTheWeek("WEDNESDAY");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public JobScheduleDayOfTheWeek(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static JobScheduleDayOfTheWeek FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator JobScheduleDayOfTheWeek(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type LogicalOperator.
///
public class LogicalOperator : ConstantClass
{
///
/// Constant AND for LogicalOperator
///
public static readonly LogicalOperator AND = new LogicalOperator("AND");
///
/// Constant OR for LogicalOperator
///
public static readonly LogicalOperator OR = new LogicalOperator("OR");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public LogicalOperator(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static LogicalOperator FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator LogicalOperator(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type MarketoConnectorOperator.
///
public class MarketoConnectorOperator : ConstantClass
{
///
/// Constant ADDITION for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator ADDITION = new MarketoConnectorOperator("ADDITION");
///
/// Constant BETWEEN for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator BETWEEN = new MarketoConnectorOperator("BETWEEN");
///
/// Constant DIVISION for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator DIVISION = new MarketoConnectorOperator("DIVISION");
///
/// Constant GREATER_THAN for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator GREATER_THAN = new MarketoConnectorOperator("GREATER_THAN");
///
/// Constant LESS_THAN for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator LESS_THAN = new MarketoConnectorOperator("LESS_THAN");
///
/// Constant MASK_ALL for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator MASK_ALL = new MarketoConnectorOperator("MASK_ALL");
///
/// Constant MASK_FIRST_N for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator MASK_FIRST_N = new MarketoConnectorOperator("MASK_FIRST_N");
///
/// Constant MASK_LAST_N for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator MASK_LAST_N = new MarketoConnectorOperator("MASK_LAST_N");
///
/// Constant MULTIPLICATION for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator MULTIPLICATION = new MarketoConnectorOperator("MULTIPLICATION");
///
/// Constant NO_OP for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator NO_OP = new MarketoConnectorOperator("NO_OP");
///
/// Constant PROJECTION for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator PROJECTION = new MarketoConnectorOperator("PROJECTION");
///
/// Constant SUBTRACTION for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator SUBTRACTION = new MarketoConnectorOperator("SUBTRACTION");
///
/// Constant VALIDATE_NON_NEGATIVE for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator VALIDATE_NON_NEGATIVE = new MarketoConnectorOperator("VALIDATE_NON_NEGATIVE");
///
/// Constant VALIDATE_NON_NULL for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator VALIDATE_NON_NULL = new MarketoConnectorOperator("VALIDATE_NON_NULL");
///
/// Constant VALIDATE_NON_ZERO for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator VALIDATE_NON_ZERO = new MarketoConnectorOperator("VALIDATE_NON_ZERO");
///
/// Constant VALIDATE_NUMERIC for MarketoConnectorOperator
///
public static readonly MarketoConnectorOperator VALIDATE_NUMERIC = new MarketoConnectorOperator("VALIDATE_NUMERIC");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public MarketoConnectorOperator(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static MarketoConnectorOperator FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator MarketoConnectorOperator(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type MatchType.
///
public class MatchType : ConstantClass
{
///
/// Constant ML_BASED_MATCHING for MatchType
///
public static readonly MatchType ML_BASED_MATCHING = new MatchType("ML_BASED_MATCHING");
///
/// Constant RULE_BASED_MATCHING for MatchType
///
public static readonly MatchType RULE_BASED_MATCHING = new MatchType("RULE_BASED_MATCHING");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public MatchType(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static MatchType FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator MatchType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type Operator.
///
public class Operator : ConstantClass
{
///
/// Constant EQUAL_TO for Operator
///
public static readonly Operator EQUAL_TO = new Operator("EQUAL_TO");
///
/// Constant GREATER_THAN for Operator
///
public static readonly Operator GREATER_THAN = new Operator("GREATER_THAN");
///
/// Constant LESS_THAN for Operator
///
public static readonly Operator LESS_THAN = new Operator("LESS_THAN");
///
/// Constant NOT_EQUAL_TO for Operator
///
public static readonly Operator NOT_EQUAL_TO = new Operator("NOT_EQUAL_TO");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public Operator(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static Operator FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator Operator(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type OperatorPropertiesKeys.
///
public class OperatorPropertiesKeys : ConstantClass
{
///
/// Constant CONCAT_FORMAT for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys CONCAT_FORMAT = new OperatorPropertiesKeys("CONCAT_FORMAT");
///
/// Constant DATA_TYPE for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys DATA_TYPE = new OperatorPropertiesKeys("DATA_TYPE");
///
/// Constant DESTINATION_DATA_TYPE for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys DESTINATION_DATA_TYPE = new OperatorPropertiesKeys("DESTINATION_DATA_TYPE");
///
/// Constant LOWER_BOUND for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys LOWER_BOUND = new OperatorPropertiesKeys("LOWER_BOUND");
///
/// Constant MASK_LENGTH for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys MASK_LENGTH = new OperatorPropertiesKeys("MASK_LENGTH");
///
/// Constant MASK_VALUE for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys MASK_VALUE = new OperatorPropertiesKeys("MASK_VALUE");
///
/// Constant MATH_OPERATION_FIELDS_ORDER for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys MATH_OPERATION_FIELDS_ORDER = new OperatorPropertiesKeys("MATH_OPERATION_FIELDS_ORDER");
///
/// Constant SOURCE_DATA_TYPE for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys SOURCE_DATA_TYPE = new OperatorPropertiesKeys("SOURCE_DATA_TYPE");
///
/// Constant SUBFIELD_CATEGORY_MAP for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys SUBFIELD_CATEGORY_MAP = new OperatorPropertiesKeys("SUBFIELD_CATEGORY_MAP");
///
/// Constant TRUNCATE_LENGTH for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys TRUNCATE_LENGTH = new OperatorPropertiesKeys("TRUNCATE_LENGTH");
///
/// Constant UPPER_BOUND for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys UPPER_BOUND = new OperatorPropertiesKeys("UPPER_BOUND");
///
/// Constant VALIDATION_ACTION for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys VALIDATION_ACTION = new OperatorPropertiesKeys("VALIDATION_ACTION");
///
/// Constant VALUE for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys VALUE = new OperatorPropertiesKeys("VALUE");
///
/// Constant VALUES for OperatorPropertiesKeys
///
public static readonly OperatorPropertiesKeys VALUES = new OperatorPropertiesKeys("VALUES");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public OperatorPropertiesKeys(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static OperatorPropertiesKeys FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator OperatorPropertiesKeys(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PartyType.
///
public class PartyType : ConstantClass
{
///
/// Constant BUSINESS for PartyType
///
public static readonly PartyType BUSINESS = new PartyType("BUSINESS");
///
/// Constant INDIVIDUAL for PartyType
///
public static readonly PartyType INDIVIDUAL = new PartyType("INDIVIDUAL");
///
/// Constant OTHER for PartyType
///
public static readonly PartyType OTHER = new PartyType("OTHER");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public PartyType(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static PartyType FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator PartyType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RuleBasedMatchingStatus.
///
public class RuleBasedMatchingStatus : ConstantClass
{
///
/// Constant ACTIVE for RuleBasedMatchingStatus
///
public static readonly RuleBasedMatchingStatus ACTIVE = new RuleBasedMatchingStatus("ACTIVE");
///
/// Constant IN_PROGRESS for RuleBasedMatchingStatus
///
public static readonly RuleBasedMatchingStatus IN_PROGRESS = new RuleBasedMatchingStatus("IN_PROGRESS");
///
/// Constant PENDING for RuleBasedMatchingStatus
///
public static readonly RuleBasedMatchingStatus PENDING = new RuleBasedMatchingStatus("PENDING");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public RuleBasedMatchingStatus(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static RuleBasedMatchingStatus FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator RuleBasedMatchingStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type S3ConnectorOperator.
///
public class S3ConnectorOperator : ConstantClass
{
///
/// Constant ADDITION for S3ConnectorOperator
///
public static readonly S3ConnectorOperator ADDITION = new S3ConnectorOperator("ADDITION");
///
/// Constant BETWEEN for S3ConnectorOperator
///
public static readonly S3ConnectorOperator BETWEEN = new S3ConnectorOperator("BETWEEN");
///
/// Constant DIVISION for S3ConnectorOperator
///
public static readonly S3ConnectorOperator DIVISION = new S3ConnectorOperator("DIVISION");
///
/// Constant EQUAL_TO for S3ConnectorOperator
///
public static readonly S3ConnectorOperator EQUAL_TO = new S3ConnectorOperator("EQUAL_TO");
///
/// Constant GREATER_THAN for S3ConnectorOperator
///
public static readonly S3ConnectorOperator GREATER_THAN = new S3ConnectorOperator("GREATER_THAN");
///
/// Constant GREATER_THAN_OR_EQUAL_TO for S3ConnectorOperator
///
public static readonly S3ConnectorOperator GREATER_THAN_OR_EQUAL_TO = new S3ConnectorOperator("GREATER_THAN_OR_EQUAL_TO");
///
/// Constant LESS_THAN for S3ConnectorOperator
///
public static readonly S3ConnectorOperator LESS_THAN = new S3ConnectorOperator("LESS_THAN");
///
/// Constant LESS_THAN_OR_EQUAL_TO for S3ConnectorOperator
///
public static readonly S3ConnectorOperator LESS_THAN_OR_EQUAL_TO = new S3ConnectorOperator("LESS_THAN_OR_EQUAL_TO");
///
/// Constant MASK_ALL for S3ConnectorOperator
///
public static readonly S3ConnectorOperator MASK_ALL = new S3ConnectorOperator("MASK_ALL");
///
/// Constant MASK_FIRST_N for S3ConnectorOperator
///
public static readonly S3ConnectorOperator MASK_FIRST_N = new S3ConnectorOperator("MASK_FIRST_N");
///
/// Constant MASK_LAST_N for S3ConnectorOperator
///
public static readonly S3ConnectorOperator MASK_LAST_N = new S3ConnectorOperator("MASK_LAST_N");
///
/// Constant MULTIPLICATION for S3ConnectorOperator
///
public static readonly S3ConnectorOperator MULTIPLICATION = new S3ConnectorOperator("MULTIPLICATION");
///
/// Constant NO_OP for S3ConnectorOperator
///
public static readonly S3ConnectorOperator NO_OP = new S3ConnectorOperator("NO_OP");
///
/// Constant NOT_EQUAL_TO for S3ConnectorOperator
///
public static readonly S3ConnectorOperator NOT_EQUAL_TO = new S3ConnectorOperator("NOT_EQUAL_TO");
///
/// Constant PROJECTION for S3ConnectorOperator
///
public static readonly S3ConnectorOperator PROJECTION = new S3ConnectorOperator("PROJECTION");
///
/// Constant SUBTRACTION for S3ConnectorOperator
///
public static readonly S3ConnectorOperator SUBTRACTION = new S3ConnectorOperator("SUBTRACTION");
///
/// Constant VALIDATE_NON_NEGATIVE for S3ConnectorOperator
///
public static readonly S3ConnectorOperator VALIDATE_NON_NEGATIVE = new S3ConnectorOperator("VALIDATE_NON_NEGATIVE");
///
/// Constant VALIDATE_NON_NULL for S3ConnectorOperator
///
public static readonly S3ConnectorOperator VALIDATE_NON_NULL = new S3ConnectorOperator("VALIDATE_NON_NULL");
///
/// Constant VALIDATE_NON_ZERO for S3ConnectorOperator
///
public static readonly S3ConnectorOperator VALIDATE_NON_ZERO = new S3ConnectorOperator("VALIDATE_NON_ZERO");
///
/// Constant VALIDATE_NUMERIC for S3ConnectorOperator
///
public static readonly S3ConnectorOperator VALIDATE_NUMERIC = new S3ConnectorOperator("VALIDATE_NUMERIC");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public S3ConnectorOperator(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static S3ConnectorOperator FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator S3ConnectorOperator(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SalesforceConnectorOperator.
///
public class SalesforceConnectorOperator : ConstantClass
{
///
/// Constant ADDITION for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator ADDITION = new SalesforceConnectorOperator("ADDITION");
///
/// Constant BETWEEN for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator BETWEEN = new SalesforceConnectorOperator("BETWEEN");
///
/// Constant CONTAINS for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator CONTAINS = new SalesforceConnectorOperator("CONTAINS");
///
/// Constant DIVISION for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator DIVISION = new SalesforceConnectorOperator("DIVISION");
///
/// Constant EQUAL_TO for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator EQUAL_TO = new SalesforceConnectorOperator("EQUAL_TO");
///
/// Constant GREATER_THAN for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator GREATER_THAN = new SalesforceConnectorOperator("GREATER_THAN");
///
/// Constant GREATER_THAN_OR_EQUAL_TO for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator GREATER_THAN_OR_EQUAL_TO = new SalesforceConnectorOperator("GREATER_THAN_OR_EQUAL_TO");
///
/// Constant LESS_THAN for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator LESS_THAN = new SalesforceConnectorOperator("LESS_THAN");
///
/// Constant LESS_THAN_OR_EQUAL_TO for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator LESS_THAN_OR_EQUAL_TO = new SalesforceConnectorOperator("LESS_THAN_OR_EQUAL_TO");
///
/// Constant MASK_ALL for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator MASK_ALL = new SalesforceConnectorOperator("MASK_ALL");
///
/// Constant MASK_FIRST_N for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator MASK_FIRST_N = new SalesforceConnectorOperator("MASK_FIRST_N");
///
/// Constant MASK_LAST_N for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator MASK_LAST_N = new SalesforceConnectorOperator("MASK_LAST_N");
///
/// Constant MULTIPLICATION for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator MULTIPLICATION = new SalesforceConnectorOperator("MULTIPLICATION");
///
/// Constant NO_OP for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator NO_OP = new SalesforceConnectorOperator("NO_OP");
///
/// Constant NOT_EQUAL_TO for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator NOT_EQUAL_TO = new SalesforceConnectorOperator("NOT_EQUAL_TO");
///
/// Constant PROJECTION for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator PROJECTION = new SalesforceConnectorOperator("PROJECTION");
///
/// Constant SUBTRACTION for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator SUBTRACTION = new SalesforceConnectorOperator("SUBTRACTION");
///
/// Constant VALIDATE_NON_NEGATIVE for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator VALIDATE_NON_NEGATIVE = new SalesforceConnectorOperator("VALIDATE_NON_NEGATIVE");
///
/// Constant VALIDATE_NON_NULL for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator VALIDATE_NON_NULL = new SalesforceConnectorOperator("VALIDATE_NON_NULL");
///
/// Constant VALIDATE_NON_ZERO for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator VALIDATE_NON_ZERO = new SalesforceConnectorOperator("VALIDATE_NON_ZERO");
///
/// Constant VALIDATE_NUMERIC for SalesforceConnectorOperator
///
public static readonly SalesforceConnectorOperator VALIDATE_NUMERIC = new SalesforceConnectorOperator("VALIDATE_NUMERIC");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public SalesforceConnectorOperator(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static SalesforceConnectorOperator FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator SalesforceConnectorOperator(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ServiceNowConnectorOperator.
///
public class ServiceNowConnectorOperator : ConstantClass
{
///
/// Constant ADDITION for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator ADDITION = new ServiceNowConnectorOperator("ADDITION");
///
/// Constant BETWEEN for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator BETWEEN = new ServiceNowConnectorOperator("BETWEEN");
///
/// Constant CONTAINS for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator CONTAINS = new ServiceNowConnectorOperator("CONTAINS");
///
/// Constant DIVISION for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator DIVISION = new ServiceNowConnectorOperator("DIVISION");
///
/// Constant EQUAL_TO for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator EQUAL_TO = new ServiceNowConnectorOperator("EQUAL_TO");
///
/// Constant GREATER_THAN for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator GREATER_THAN = new ServiceNowConnectorOperator("GREATER_THAN");
///
/// Constant GREATER_THAN_OR_EQUAL_TO for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator GREATER_THAN_OR_EQUAL_TO = new ServiceNowConnectorOperator("GREATER_THAN_OR_EQUAL_TO");
///
/// Constant LESS_THAN for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator LESS_THAN = new ServiceNowConnectorOperator("LESS_THAN");
///
/// Constant LESS_THAN_OR_EQUAL_TO for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator LESS_THAN_OR_EQUAL_TO = new ServiceNowConnectorOperator("LESS_THAN_OR_EQUAL_TO");
///
/// Constant MASK_ALL for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator MASK_ALL = new ServiceNowConnectorOperator("MASK_ALL");
///
/// Constant MASK_FIRST_N for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator MASK_FIRST_N = new ServiceNowConnectorOperator("MASK_FIRST_N");
///
/// Constant MASK_LAST_N for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator MASK_LAST_N = new ServiceNowConnectorOperator("MASK_LAST_N");
///
/// Constant MULTIPLICATION for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator MULTIPLICATION = new ServiceNowConnectorOperator("MULTIPLICATION");
///
/// Constant NO_OP for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator NO_OP = new ServiceNowConnectorOperator("NO_OP");
///
/// Constant NOT_EQUAL_TO for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator NOT_EQUAL_TO = new ServiceNowConnectorOperator("NOT_EQUAL_TO");
///
/// Constant PROJECTION for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator PROJECTION = new ServiceNowConnectorOperator("PROJECTION");
///
/// Constant SUBTRACTION for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator SUBTRACTION = new ServiceNowConnectorOperator("SUBTRACTION");
///
/// Constant VALIDATE_NON_NEGATIVE for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator VALIDATE_NON_NEGATIVE = new ServiceNowConnectorOperator("VALIDATE_NON_NEGATIVE");
///
/// Constant VALIDATE_NON_NULL for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator VALIDATE_NON_NULL = new ServiceNowConnectorOperator("VALIDATE_NON_NULL");
///
/// Constant VALIDATE_NON_ZERO for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator VALIDATE_NON_ZERO = new ServiceNowConnectorOperator("VALIDATE_NON_ZERO");
///
/// Constant VALIDATE_NUMERIC for ServiceNowConnectorOperator
///
public static readonly ServiceNowConnectorOperator VALIDATE_NUMERIC = new ServiceNowConnectorOperator("VALIDATE_NUMERIC");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public ServiceNowConnectorOperator(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static ServiceNowConnectorOperator FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator ServiceNowConnectorOperator(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SourceConnectorType.
///
public class SourceConnectorType : ConstantClass
{
///
/// Constant Marketo for SourceConnectorType
///
public static readonly SourceConnectorType Marketo = new SourceConnectorType("Marketo");
///
/// Constant S3 for SourceConnectorType
///
public static readonly SourceConnectorType S3 = new SourceConnectorType("S3");
///
/// Constant Salesforce for SourceConnectorType
///
public static readonly SourceConnectorType Salesforce = new SourceConnectorType("Salesforce");
///
/// Constant Servicenow for SourceConnectorType
///
public static readonly SourceConnectorType Servicenow = new SourceConnectorType("Servicenow");
///
/// Constant Zendesk for SourceConnectorType
///
public static readonly SourceConnectorType Zendesk = new SourceConnectorType("Zendesk");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public SourceConnectorType(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static SourceConnectorType FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator SourceConnectorType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type StandardIdentifier.
///
public class StandardIdentifier : ConstantClass
{
///
/// Constant ASSET for StandardIdentifier
///
public static readonly StandardIdentifier ASSET = new StandardIdentifier("ASSET");
///
/// Constant CASE for StandardIdentifier
///
public static readonly StandardIdentifier CASE = new StandardIdentifier("CASE");
///
/// Constant LOOKUP_ONLY for StandardIdentifier
///
public static readonly StandardIdentifier LOOKUP_ONLY = new StandardIdentifier("LOOKUP_ONLY");
///
/// Constant NEW_ONLY for StandardIdentifier
///
public static readonly StandardIdentifier NEW_ONLY = new StandardIdentifier("NEW_ONLY");
///
/// Constant ORDER for StandardIdentifier
///
public static readonly StandardIdentifier ORDER = new StandardIdentifier("ORDER");
///
/// Constant PROFILE for StandardIdentifier
///
public static readonly StandardIdentifier PROFILE = new StandardIdentifier("PROFILE");
///
/// Constant SECONDARY for StandardIdentifier
///
public static readonly StandardIdentifier SECONDARY = new StandardIdentifier("SECONDARY");
///
/// Constant UNIQUE for StandardIdentifier
///
public static readonly StandardIdentifier UNIQUE = new StandardIdentifier("UNIQUE");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public StandardIdentifier(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static StandardIdentifier FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator StandardIdentifier(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type Statistic.
///
public class Statistic : ConstantClass
{
///
/// Constant AVERAGE for Statistic
///
public static readonly Statistic AVERAGE = new Statistic("AVERAGE");
///
/// Constant COUNT for Statistic
///
public static readonly Statistic COUNT = new Statistic("COUNT");
///
/// Constant FIRST_OCCURRENCE for Statistic
///
public static readonly Statistic FIRST_OCCURRENCE = new Statistic("FIRST_OCCURRENCE");
///
/// Constant LAST_OCCURRENCE for Statistic
///
public static readonly Statistic LAST_OCCURRENCE = new Statistic("LAST_OCCURRENCE");
///
/// Constant MAX_OCCURRENCE for Statistic
///
public static readonly Statistic MAX_OCCURRENCE = new Statistic("MAX_OCCURRENCE");
///
/// Constant MAXIMUM for Statistic
///
public static readonly Statistic MAXIMUM = new Statistic("MAXIMUM");
///
/// Constant MINIMUM for Statistic
///
public static readonly Statistic MINIMUM = new Statistic("MINIMUM");
///
/// Constant SUM for Statistic
///
public static readonly Statistic SUM = new Statistic("SUM");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public Statistic(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static Statistic FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator Statistic(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type Status.
///
public class Status : ConstantClass
{
///
/// Constant CANCELLED for Status
///
public static readonly Status CANCELLED = new Status("CANCELLED");
///
/// Constant COMPLETE for Status
///
public static readonly Status COMPLETE = new Status("COMPLETE");
///
/// Constant FAILED for Status
///
public static readonly Status FAILED = new Status("FAILED");
///
/// Constant IN_PROGRESS for Status
///
public static readonly Status IN_PROGRESS = new Status("IN_PROGRESS");
///
/// Constant NOT_STARTED for Status
///
public static readonly Status NOT_STARTED = new Status("NOT_STARTED");
///
/// Constant RETRY for Status
///
public static readonly Status RETRY = new Status("RETRY");
///
/// Constant SPLIT for Status
///
public static readonly Status SPLIT = new Status("SPLIT");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public Status(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static Status FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator Status(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TaskType.
///
public class TaskType : ConstantClass
{
///
/// Constant Arithmetic for TaskType
///
public static readonly TaskType Arithmetic = new TaskType("Arithmetic");
///
/// Constant Filter for TaskType
///
public static readonly TaskType Filter = new TaskType("Filter");
///
/// Constant Map for TaskType
///
public static readonly TaskType Map = new TaskType("Map");
///
/// Constant Mask for TaskType
///
public static readonly TaskType Mask = new TaskType("Mask");
///
/// Constant Merge for TaskType
///
public static readonly TaskType Merge = new TaskType("Merge");
///
/// Constant Truncate for TaskType
///
public static readonly TaskType Truncate = new TaskType("Truncate");
///
/// Constant Validate for TaskType
///
public static readonly TaskType Validate = new TaskType("Validate");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public TaskType(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static TaskType FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator TaskType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TriggerType.
///
public class TriggerType : ConstantClass
{
///
/// Constant Event for TriggerType
///
public static readonly TriggerType Event = new TriggerType("Event");
///
/// Constant OnDemand for TriggerType
///
public static readonly TriggerType OnDemand = new TriggerType("OnDemand");
///
/// Constant Scheduled for TriggerType
///
public static readonly TriggerType Scheduled = new TriggerType("Scheduled");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public TriggerType(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static TriggerType FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator TriggerType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type Unit.
///
public class Unit : ConstantClass
{
///
/// Constant DAYS for Unit
///
public static readonly Unit DAYS = new Unit("DAYS");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public Unit(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static Unit FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator Unit(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type WorkflowType.
///
public class WorkflowType : ConstantClass
{
///
/// Constant APPFLOW_INTEGRATION for WorkflowType
///
public static readonly WorkflowType APPFLOW_INTEGRATION = new WorkflowType("APPFLOW_INTEGRATION");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public WorkflowType(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static WorkflowType FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator WorkflowType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ZendeskConnectorOperator.
///
public class ZendeskConnectorOperator : ConstantClass
{
///
/// Constant ADDITION for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator ADDITION = new ZendeskConnectorOperator("ADDITION");
///
/// Constant DIVISION for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator DIVISION = new ZendeskConnectorOperator("DIVISION");
///
/// Constant GREATER_THAN for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator GREATER_THAN = new ZendeskConnectorOperator("GREATER_THAN");
///
/// Constant MASK_ALL for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator MASK_ALL = new ZendeskConnectorOperator("MASK_ALL");
///
/// Constant MASK_FIRST_N for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator MASK_FIRST_N = new ZendeskConnectorOperator("MASK_FIRST_N");
///
/// Constant MASK_LAST_N for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator MASK_LAST_N = new ZendeskConnectorOperator("MASK_LAST_N");
///
/// Constant MULTIPLICATION for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator MULTIPLICATION = new ZendeskConnectorOperator("MULTIPLICATION");
///
/// Constant NO_OP for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator NO_OP = new ZendeskConnectorOperator("NO_OP");
///
/// Constant PROJECTION for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator PROJECTION = new ZendeskConnectorOperator("PROJECTION");
///
/// Constant SUBTRACTION for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator SUBTRACTION = new ZendeskConnectorOperator("SUBTRACTION");
///
/// Constant VALIDATE_NON_NEGATIVE for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator VALIDATE_NON_NEGATIVE = new ZendeskConnectorOperator("VALIDATE_NON_NEGATIVE");
///
/// Constant VALIDATE_NON_NULL for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator VALIDATE_NON_NULL = new ZendeskConnectorOperator("VALIDATE_NON_NULL");
///
/// Constant VALIDATE_NON_ZERO for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator VALIDATE_NON_ZERO = new ZendeskConnectorOperator("VALIDATE_NON_ZERO");
///
/// Constant VALIDATE_NUMERIC for ZendeskConnectorOperator
///
public static readonly ZendeskConnectorOperator VALIDATE_NUMERIC = new ZendeskConnectorOperator("VALIDATE_NUMERIC");
///
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
///
public ZendeskConnectorOperator(string value)
: base(value)
{
}
///
/// Finds the constant for the unique value.
///
/// The unique value for the constant
/// The constant for the unique value
public static ZendeskConnectorOperator FindValue(string value)
{
return FindValue(value);
}
///
/// Utility method to convert strings to the constant class.
///
/// The string value to convert to the constant class.
///
public static implicit operator ZendeskConnectorOperator(string value)
{
return FindValue(value);
}
}
}