/*
* 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 comprehend-2017-11-27.normal.json service model.
*/
using System;
using Amazon.Runtime;
namespace Amazon.Comprehend
{
///
/// Constants used for properties of type AugmentedManifestsDocumentTypeFormat.
///
public class AugmentedManifestsDocumentTypeFormat : ConstantClass
{
///
/// Constant PLAIN_TEXT_DOCUMENT for AugmentedManifestsDocumentTypeFormat
///
public static readonly AugmentedManifestsDocumentTypeFormat PLAIN_TEXT_DOCUMENT = new AugmentedManifestsDocumentTypeFormat("PLAIN_TEXT_DOCUMENT");
///
/// Constant SEMI_STRUCTURED_DOCUMENT for AugmentedManifestsDocumentTypeFormat
///
public static readonly AugmentedManifestsDocumentTypeFormat SEMI_STRUCTURED_DOCUMENT = new AugmentedManifestsDocumentTypeFormat("SEMI_STRUCTURED_DOCUMENT");
///
/// 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 AugmentedManifestsDocumentTypeFormat(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 AugmentedManifestsDocumentTypeFormat 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 AugmentedManifestsDocumentTypeFormat(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type BlockType.
///
public class BlockType : ConstantClass
{
///
/// Constant LINE for BlockType
///
public static readonly BlockType LINE = new BlockType("LINE");
///
/// Constant WORD for BlockType
///
public static readonly BlockType WORD = new BlockType("WORD");
///
/// 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 BlockType(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 BlockType 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 BlockType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DatasetDataFormat.
///
public class DatasetDataFormat : ConstantClass
{
///
/// Constant AUGMENTED_MANIFEST for DatasetDataFormat
///
public static readonly DatasetDataFormat AUGMENTED_MANIFEST = new DatasetDataFormat("AUGMENTED_MANIFEST");
///
/// Constant COMPREHEND_CSV for DatasetDataFormat
///
public static readonly DatasetDataFormat COMPREHEND_CSV = new DatasetDataFormat("COMPREHEND_CSV");
///
/// 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 DatasetDataFormat(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 DatasetDataFormat 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 DatasetDataFormat(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DatasetStatus.
///
public class DatasetStatus : ConstantClass
{
///
/// Constant COMPLETED for DatasetStatus
///
public static readonly DatasetStatus COMPLETED = new DatasetStatus("COMPLETED");
///
/// Constant CREATING for DatasetStatus
///
public static readonly DatasetStatus CREATING = new DatasetStatus("CREATING");
///
/// Constant FAILED for DatasetStatus
///
public static readonly DatasetStatus FAILED = new DatasetStatus("FAILED");
///
/// 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 DatasetStatus(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 DatasetStatus 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 DatasetStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DatasetType.
///
public class DatasetType : ConstantClass
{
///
/// Constant TEST for DatasetType
///
public static readonly DatasetType TEST = new DatasetType("TEST");
///
/// Constant TRAIN for DatasetType
///
public static readonly DatasetType TRAIN = new DatasetType("TRAIN");
///
/// 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 DatasetType(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 DatasetType 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 DatasetType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DocumentClassifierDataFormat.
///
public class DocumentClassifierDataFormat : ConstantClass
{
///
/// Constant AUGMENTED_MANIFEST for DocumentClassifierDataFormat
///
public static readonly DocumentClassifierDataFormat AUGMENTED_MANIFEST = new DocumentClassifierDataFormat("AUGMENTED_MANIFEST");
///
/// Constant COMPREHEND_CSV for DocumentClassifierDataFormat
///
public static readonly DocumentClassifierDataFormat COMPREHEND_CSV = new DocumentClassifierDataFormat("COMPREHEND_CSV");
///
/// 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 DocumentClassifierDataFormat(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 DocumentClassifierDataFormat 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 DocumentClassifierDataFormat(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DocumentClassifierDocumentTypeFormat.
///
public class DocumentClassifierDocumentTypeFormat : ConstantClass
{
///
/// Constant PLAIN_TEXT_DOCUMENT for DocumentClassifierDocumentTypeFormat
///
public static readonly DocumentClassifierDocumentTypeFormat PLAIN_TEXT_DOCUMENT = new DocumentClassifierDocumentTypeFormat("PLAIN_TEXT_DOCUMENT");
///
/// Constant SEMI_STRUCTURED_DOCUMENT for DocumentClassifierDocumentTypeFormat
///
public static readonly DocumentClassifierDocumentTypeFormat SEMI_STRUCTURED_DOCUMENT = new DocumentClassifierDocumentTypeFormat("SEMI_STRUCTURED_DOCUMENT");
///
/// 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 DocumentClassifierDocumentTypeFormat(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 DocumentClassifierDocumentTypeFormat 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 DocumentClassifierDocumentTypeFormat(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DocumentClassifierMode.
///
public class DocumentClassifierMode : ConstantClass
{
///
/// Constant MULTI_CLASS for DocumentClassifierMode
///
public static readonly DocumentClassifierMode MULTI_CLASS = new DocumentClassifierMode("MULTI_CLASS");
///
/// Constant MULTI_LABEL for DocumentClassifierMode
///
public static readonly DocumentClassifierMode MULTI_LABEL = new DocumentClassifierMode("MULTI_LABEL");
///
/// 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 DocumentClassifierMode(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 DocumentClassifierMode 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 DocumentClassifierMode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DocumentReadAction.
///
public class DocumentReadAction : ConstantClass
{
///
/// Constant TEXTRACT_ANALYZE_DOCUMENT for DocumentReadAction
///
public static readonly DocumentReadAction TEXTRACT_ANALYZE_DOCUMENT = new DocumentReadAction("TEXTRACT_ANALYZE_DOCUMENT");
///
/// Constant TEXTRACT_DETECT_DOCUMENT_TEXT for DocumentReadAction
///
public static readonly DocumentReadAction TEXTRACT_DETECT_DOCUMENT_TEXT = new DocumentReadAction("TEXTRACT_DETECT_DOCUMENT_TEXT");
///
/// 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 DocumentReadAction(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 DocumentReadAction 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 DocumentReadAction(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DocumentReadFeatureTypes.
///
public class DocumentReadFeatureTypes : ConstantClass
{
///
/// Constant FORMS for DocumentReadFeatureTypes
///
public static readonly DocumentReadFeatureTypes FORMS = new DocumentReadFeatureTypes("FORMS");
///
/// Constant TABLES for DocumentReadFeatureTypes
///
public static readonly DocumentReadFeatureTypes TABLES = new DocumentReadFeatureTypes("TABLES");
///
/// 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 DocumentReadFeatureTypes(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 DocumentReadFeatureTypes 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 DocumentReadFeatureTypes(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DocumentReadMode.
///
public class DocumentReadMode : ConstantClass
{
///
/// Constant FORCE_DOCUMENT_READ_ACTION for DocumentReadMode
///
public static readonly DocumentReadMode FORCE_DOCUMENT_READ_ACTION = new DocumentReadMode("FORCE_DOCUMENT_READ_ACTION");
///
/// Constant SERVICE_DEFAULT for DocumentReadMode
///
public static readonly DocumentReadMode SERVICE_DEFAULT = new DocumentReadMode("SERVICE_DEFAULT");
///
/// 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 DocumentReadMode(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 DocumentReadMode 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 DocumentReadMode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DocumentType.
///
public class DocumentType : ConstantClass
{
///
/// Constant IMAGE for DocumentType
///
public static readonly DocumentType IMAGE = new DocumentType("IMAGE");
///
/// Constant MS_WORD for DocumentType
///
public static readonly DocumentType MS_WORD = new DocumentType("MS_WORD");
///
/// Constant NATIVE_PDF for DocumentType
///
public static readonly DocumentType NATIVE_PDF = new DocumentType("NATIVE_PDF");
///
/// Constant PLAIN_TEXT for DocumentType
///
public static readonly DocumentType PLAIN_TEXT = new DocumentType("PLAIN_TEXT");
///
/// Constant SCANNED_PDF for DocumentType
///
public static readonly DocumentType SCANNED_PDF = new DocumentType("SCANNED_PDF");
///
/// Constant TEXTRACT_ANALYZE_DOCUMENT_JSON for DocumentType
///
public static readonly DocumentType TEXTRACT_ANALYZE_DOCUMENT_JSON = new DocumentType("TEXTRACT_ANALYZE_DOCUMENT_JSON");
///
/// Constant TEXTRACT_DETECT_DOCUMENT_TEXT_JSON for DocumentType
///
public static readonly DocumentType TEXTRACT_DETECT_DOCUMENT_TEXT_JSON = new DocumentType("TEXTRACT_DETECT_DOCUMENT_TEXT_JSON");
///
/// 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 DocumentType(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 DocumentType 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 DocumentType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type EndpointStatus.
///
public class EndpointStatus : ConstantClass
{
///
/// Constant CREATING for EndpointStatus
///
public static readonly EndpointStatus CREATING = new EndpointStatus("CREATING");
///
/// Constant DELETING for EndpointStatus
///
public static readonly EndpointStatus DELETING = new EndpointStatus("DELETING");
///
/// Constant FAILED for EndpointStatus
///
public static readonly EndpointStatus FAILED = new EndpointStatus("FAILED");
///
/// Constant IN_SERVICE for EndpointStatus
///
public static readonly EndpointStatus IN_SERVICE = new EndpointStatus("IN_SERVICE");
///
/// Constant UPDATING for EndpointStatus
///
public static readonly EndpointStatus UPDATING = new EndpointStatus("UPDATING");
///
/// 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 EndpointStatus(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 EndpointStatus 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 EndpointStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type EntityRecognizerDataFormat.
///
public class EntityRecognizerDataFormat : ConstantClass
{
///
/// Constant AUGMENTED_MANIFEST for EntityRecognizerDataFormat
///
public static readonly EntityRecognizerDataFormat AUGMENTED_MANIFEST = new EntityRecognizerDataFormat("AUGMENTED_MANIFEST");
///
/// Constant COMPREHEND_CSV for EntityRecognizerDataFormat
///
public static readonly EntityRecognizerDataFormat COMPREHEND_CSV = new EntityRecognizerDataFormat("COMPREHEND_CSV");
///
/// 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 EntityRecognizerDataFormat(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 EntityRecognizerDataFormat 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 EntityRecognizerDataFormat(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type EntityType.
///
public class EntityType : ConstantClass
{
///
/// Constant COMMERCIAL_ITEM for EntityType
///
public static readonly EntityType COMMERCIAL_ITEM = new EntityType("COMMERCIAL_ITEM");
///
/// Constant DATE for EntityType
///
public static readonly EntityType DATE = new EntityType("DATE");
///
/// Constant EVENT for EntityType
///
public static readonly EntityType EVENT = new EntityType("EVENT");
///
/// Constant LOCATION for EntityType
///
public static readonly EntityType LOCATION = new EntityType("LOCATION");
///
/// Constant ORGANIZATION for EntityType
///
public static readonly EntityType ORGANIZATION = new EntityType("ORGANIZATION");
///
/// Constant OTHER for EntityType
///
public static readonly EntityType OTHER = new EntityType("OTHER");
///
/// Constant PERSON for EntityType
///
public static readonly EntityType PERSON = new EntityType("PERSON");
///
/// Constant QUANTITY for EntityType
///
public static readonly EntityType QUANTITY = new EntityType("QUANTITY");
///
/// Constant TITLE for EntityType
///
public static readonly EntityType TITLE = new EntityType("TITLE");
///
/// 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 EntityType(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 EntityType 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 EntityType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FlywheelIterationStatus.
///
public class FlywheelIterationStatus : ConstantClass
{
///
/// Constant COMPLETED for FlywheelIterationStatus
///
public static readonly FlywheelIterationStatus COMPLETED = new FlywheelIterationStatus("COMPLETED");
///
/// Constant EVALUATING for FlywheelIterationStatus
///
public static readonly FlywheelIterationStatus EVALUATING = new FlywheelIterationStatus("EVALUATING");
///
/// Constant FAILED for FlywheelIterationStatus
///
public static readonly FlywheelIterationStatus FAILED = new FlywheelIterationStatus("FAILED");
///
/// Constant STOP_REQUESTED for FlywheelIterationStatus
///
public static readonly FlywheelIterationStatus STOP_REQUESTED = new FlywheelIterationStatus("STOP_REQUESTED");
///
/// Constant STOPPED for FlywheelIterationStatus
///
public static readonly FlywheelIterationStatus STOPPED = new FlywheelIterationStatus("STOPPED");
///
/// Constant TRAINING for FlywheelIterationStatus
///
public static readonly FlywheelIterationStatus TRAINING = new FlywheelIterationStatus("TRAINING");
///
/// 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 FlywheelIterationStatus(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 FlywheelIterationStatus 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 FlywheelIterationStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FlywheelStatus.
///
public class FlywheelStatus : ConstantClass
{
///
/// Constant ACTIVE for FlywheelStatus
///
public static readonly FlywheelStatus ACTIVE = new FlywheelStatus("ACTIVE");
///
/// Constant CREATING for FlywheelStatus
///
public static readonly FlywheelStatus CREATING = new FlywheelStatus("CREATING");
///
/// Constant DELETING for FlywheelStatus
///
public static readonly FlywheelStatus DELETING = new FlywheelStatus("DELETING");
///
/// Constant FAILED for FlywheelStatus
///
public static readonly FlywheelStatus FAILED = new FlywheelStatus("FAILED");
///
/// Constant UPDATING for FlywheelStatus
///
public static readonly FlywheelStatus UPDATING = new FlywheelStatus("UPDATING");
///
/// 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 FlywheelStatus(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 FlywheelStatus 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 FlywheelStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type InputFormat.
///
public class InputFormat : ConstantClass
{
///
/// Constant ONE_DOC_PER_FILE for InputFormat
///
public static readonly InputFormat ONE_DOC_PER_FILE = new InputFormat("ONE_DOC_PER_FILE");
///
/// Constant ONE_DOC_PER_LINE for InputFormat
///
public static readonly InputFormat ONE_DOC_PER_LINE = new InputFormat("ONE_DOC_PER_LINE");
///
/// 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 InputFormat(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 InputFormat 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 InputFormat(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type InvalidRequestDetailReason.
///
public class InvalidRequestDetailReason : ConstantClass
{
///
/// Constant DOCUMENT_SIZE_EXCEEDED for InvalidRequestDetailReason
///
public static readonly InvalidRequestDetailReason DOCUMENT_SIZE_EXCEEDED = new InvalidRequestDetailReason("DOCUMENT_SIZE_EXCEEDED");
///
/// Constant PAGE_LIMIT_EXCEEDED for InvalidRequestDetailReason
///
public static readonly InvalidRequestDetailReason PAGE_LIMIT_EXCEEDED = new InvalidRequestDetailReason("PAGE_LIMIT_EXCEEDED");
///
/// Constant TEXTRACT_ACCESS_DENIED for InvalidRequestDetailReason
///
public static readonly InvalidRequestDetailReason TEXTRACT_ACCESS_DENIED = new InvalidRequestDetailReason("TEXTRACT_ACCESS_DENIED");
///
/// Constant UNSUPPORTED_DOC_TYPE for InvalidRequestDetailReason
///
public static readonly InvalidRequestDetailReason UNSUPPORTED_DOC_TYPE = new InvalidRequestDetailReason("UNSUPPORTED_DOC_TYPE");
///
/// 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 InvalidRequestDetailReason(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 InvalidRequestDetailReason 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 InvalidRequestDetailReason(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type InvalidRequestReason.
///
public class InvalidRequestReason : ConstantClass
{
///
/// Constant INVALID_DOCUMENT for InvalidRequestReason
///
public static readonly InvalidRequestReason INVALID_DOCUMENT = new InvalidRequestReason("INVALID_DOCUMENT");
///
/// 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 InvalidRequestReason(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 InvalidRequestReason 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 InvalidRequestReason(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type JobStatus.
///
public class JobStatus : ConstantClass
{
///
/// Constant COMPLETED for JobStatus
///
public static readonly JobStatus COMPLETED = new JobStatus("COMPLETED");
///
/// Constant FAILED for JobStatus
///
public static readonly JobStatus FAILED = new JobStatus("FAILED");
///
/// Constant IN_PROGRESS for JobStatus
///
public static readonly JobStatus IN_PROGRESS = new JobStatus("IN_PROGRESS");
///
/// Constant STOP_REQUESTED for JobStatus
///
public static readonly JobStatus STOP_REQUESTED = new JobStatus("STOP_REQUESTED");
///
/// Constant STOPPED for JobStatus
///
public static readonly JobStatus STOPPED = new JobStatus("STOPPED");
///
/// Constant SUBMITTED for JobStatus
///
public static readonly JobStatus SUBMITTED = new JobStatus("SUBMITTED");
///
/// 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 JobStatus(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 JobStatus 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 JobStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type LanguageCode.
///
public class LanguageCode : ConstantClass
{
///
/// Constant Ar for LanguageCode
///
public static readonly LanguageCode Ar = new LanguageCode("ar");
///
/// Constant De for LanguageCode
///
public static readonly LanguageCode De = new LanguageCode("de");
///
/// Constant En for LanguageCode
///
public static readonly LanguageCode En = new LanguageCode("en");
///
/// Constant Es for LanguageCode
///
public static readonly LanguageCode Es = new LanguageCode("es");
///
/// Constant Fr for LanguageCode
///
public static readonly LanguageCode Fr = new LanguageCode("fr");
///
/// Constant Hi for LanguageCode
///
public static readonly LanguageCode Hi = new LanguageCode("hi");
///
/// Constant It for LanguageCode
///
public static readonly LanguageCode It = new LanguageCode("it");
///
/// Constant Ja for LanguageCode
///
public static readonly LanguageCode Ja = new LanguageCode("ja");
///
/// Constant Ko for LanguageCode
///
public static readonly LanguageCode Ko = new LanguageCode("ko");
///
/// Constant Pt for LanguageCode
///
public static readonly LanguageCode Pt = new LanguageCode("pt");
///
/// Constant Zh for LanguageCode
///
public static readonly LanguageCode Zh = new LanguageCode("zh");
///
/// Constant ZhTW for LanguageCode
///
public static readonly LanguageCode ZhTW = new LanguageCode("zh-TW");
///
/// 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 LanguageCode(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 LanguageCode 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 LanguageCode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ModelStatus.
///
public class ModelStatus : ConstantClass
{
///
/// Constant DELETING for ModelStatus
///
public static readonly ModelStatus DELETING = new ModelStatus("DELETING");
///
/// Constant IN_ERROR for ModelStatus
///
public static readonly ModelStatus IN_ERROR = new ModelStatus("IN_ERROR");
///
/// Constant STOP_REQUESTED for ModelStatus
///
public static readonly ModelStatus STOP_REQUESTED = new ModelStatus("STOP_REQUESTED");
///
/// Constant STOPPED for ModelStatus
///
public static readonly ModelStatus STOPPED = new ModelStatus("STOPPED");
///
/// Constant SUBMITTED for ModelStatus
///
public static readonly ModelStatus SUBMITTED = new ModelStatus("SUBMITTED");
///
/// Constant TRAINED for ModelStatus
///
public static readonly ModelStatus TRAINED = new ModelStatus("TRAINED");
///
/// Constant TRAINED_WITH_WARNING for ModelStatus
///
public static readonly ModelStatus TRAINED_WITH_WARNING = new ModelStatus("TRAINED_WITH_WARNING");
///
/// Constant TRAINING for ModelStatus
///
public static readonly ModelStatus TRAINING = new ModelStatus("TRAINING");
///
/// 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 ModelStatus(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 ModelStatus 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 ModelStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ModelType.
///
public class ModelType : ConstantClass
{
///
/// Constant DOCUMENT_CLASSIFIER for ModelType
///
public static readonly ModelType DOCUMENT_CLASSIFIER = new ModelType("DOCUMENT_CLASSIFIER");
///
/// Constant ENTITY_RECOGNIZER for ModelType
///
public static readonly ModelType ENTITY_RECOGNIZER = new ModelType("ENTITY_RECOGNIZER");
///
/// 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 ModelType(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 ModelType 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 ModelType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PageBasedErrorCode.
///
public class PageBasedErrorCode : ConstantClass
{
///
/// Constant INTERNAL_SERVER_ERROR for PageBasedErrorCode
///
public static readonly PageBasedErrorCode INTERNAL_SERVER_ERROR = new PageBasedErrorCode("INTERNAL_SERVER_ERROR");
///
/// Constant PAGE_CHARACTERS_EXCEEDED for PageBasedErrorCode
///
public static readonly PageBasedErrorCode PAGE_CHARACTERS_EXCEEDED = new PageBasedErrorCode("PAGE_CHARACTERS_EXCEEDED");
///
/// Constant PAGE_SIZE_EXCEEDED for PageBasedErrorCode
///
public static readonly PageBasedErrorCode PAGE_SIZE_EXCEEDED = new PageBasedErrorCode("PAGE_SIZE_EXCEEDED");
///
/// Constant TEXTRACT_BAD_PAGE for PageBasedErrorCode
///
public static readonly PageBasedErrorCode TEXTRACT_BAD_PAGE = new PageBasedErrorCode("TEXTRACT_BAD_PAGE");
///
/// Constant TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED for PageBasedErrorCode
///
public static readonly PageBasedErrorCode TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED = new PageBasedErrorCode("TEXTRACT_PROVISIONED_THROUGHPUT_EXCEEDED");
///
/// 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 PageBasedErrorCode(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 PageBasedErrorCode 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 PageBasedErrorCode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PageBasedWarningCode.
///
public class PageBasedWarningCode : ConstantClass
{
///
/// Constant INFERENCING_NATIVE_DOCUMENT_WITH_PLAINTEXT_TRAINED_MODEL for PageBasedWarningCode
///
public static readonly PageBasedWarningCode INFERENCING_NATIVE_DOCUMENT_WITH_PLAINTEXT_TRAINED_MODEL = new PageBasedWarningCode("INFERENCING_NATIVE_DOCUMENT_WITH_PLAINTEXT_TRAINED_MODEL");
///
/// Constant INFERENCING_PLAINTEXT_WITH_NATIVE_TRAINED_MODEL for PageBasedWarningCode
///
public static readonly PageBasedWarningCode INFERENCING_PLAINTEXT_WITH_NATIVE_TRAINED_MODEL = new PageBasedWarningCode("INFERENCING_PLAINTEXT_WITH_NATIVE_TRAINED_MODEL");
///
/// 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 PageBasedWarningCode(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 PageBasedWarningCode 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 PageBasedWarningCode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PartOfSpeechTagType.
///
public class PartOfSpeechTagType : ConstantClass
{
///
/// Constant ADJ for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType ADJ = new PartOfSpeechTagType("ADJ");
///
/// Constant ADP for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType ADP = new PartOfSpeechTagType("ADP");
///
/// Constant ADV for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType ADV = new PartOfSpeechTagType("ADV");
///
/// Constant AUX for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType AUX = new PartOfSpeechTagType("AUX");
///
/// Constant CCONJ for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType CCONJ = new PartOfSpeechTagType("CCONJ");
///
/// Constant CONJ for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType CONJ = new PartOfSpeechTagType("CONJ");
///
/// Constant DET for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType DET = new PartOfSpeechTagType("DET");
///
/// Constant INTJ for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType INTJ = new PartOfSpeechTagType("INTJ");
///
/// Constant NOUN for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType NOUN = new PartOfSpeechTagType("NOUN");
///
/// Constant NUM for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType NUM = new PartOfSpeechTagType("NUM");
///
/// Constant O for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType O = new PartOfSpeechTagType("O");
///
/// Constant PART for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType PART = new PartOfSpeechTagType("PART");
///
/// Constant PRON for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType PRON = new PartOfSpeechTagType("PRON");
///
/// Constant PROPN for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType PROPN = new PartOfSpeechTagType("PROPN");
///
/// Constant PUNCT for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType PUNCT = new PartOfSpeechTagType("PUNCT");
///
/// Constant SCONJ for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType SCONJ = new PartOfSpeechTagType("SCONJ");
///
/// Constant SYM for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType SYM = new PartOfSpeechTagType("SYM");
///
/// Constant VERB for PartOfSpeechTagType
///
public static readonly PartOfSpeechTagType VERB = new PartOfSpeechTagType("VERB");
///
/// 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 PartOfSpeechTagType(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 PartOfSpeechTagType 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 PartOfSpeechTagType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PiiEntitiesDetectionMaskMode.
///
public class PiiEntitiesDetectionMaskMode : ConstantClass
{
///
/// Constant MASK for PiiEntitiesDetectionMaskMode
///
public static readonly PiiEntitiesDetectionMaskMode MASK = new PiiEntitiesDetectionMaskMode("MASK");
///
/// Constant REPLACE_WITH_PII_ENTITY_TYPE for PiiEntitiesDetectionMaskMode
///
public static readonly PiiEntitiesDetectionMaskMode REPLACE_WITH_PII_ENTITY_TYPE = new PiiEntitiesDetectionMaskMode("REPLACE_WITH_PII_ENTITY_TYPE");
///
/// 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 PiiEntitiesDetectionMaskMode(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 PiiEntitiesDetectionMaskMode 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 PiiEntitiesDetectionMaskMode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PiiEntitiesDetectionMode.
///
public class PiiEntitiesDetectionMode : ConstantClass
{
///
/// Constant ONLY_OFFSETS for PiiEntitiesDetectionMode
///
public static readonly PiiEntitiesDetectionMode ONLY_OFFSETS = new PiiEntitiesDetectionMode("ONLY_OFFSETS");
///
/// Constant ONLY_REDACTION for PiiEntitiesDetectionMode
///
public static readonly PiiEntitiesDetectionMode ONLY_REDACTION = new PiiEntitiesDetectionMode("ONLY_REDACTION");
///
/// 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 PiiEntitiesDetectionMode(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 PiiEntitiesDetectionMode 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 PiiEntitiesDetectionMode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type PiiEntityType.
///
public class PiiEntityType : ConstantClass
{
///
/// Constant ADDRESS for PiiEntityType
///
public static readonly PiiEntityType ADDRESS = new PiiEntityType("ADDRESS");
///
/// Constant AGE for PiiEntityType
///
public static readonly PiiEntityType AGE = new PiiEntityType("AGE");
///
/// Constant ALL for PiiEntityType
///
public static readonly PiiEntityType ALL = new PiiEntityType("ALL");
///
/// Constant AWS_ACCESS_KEY for PiiEntityType
///
public static readonly PiiEntityType AWS_ACCESS_KEY = new PiiEntityType("AWS_ACCESS_KEY");
///
/// Constant AWS_SECRET_KEY for PiiEntityType
///
public static readonly PiiEntityType AWS_SECRET_KEY = new PiiEntityType("AWS_SECRET_KEY");
///
/// Constant BANK_ACCOUNT_NUMBER for PiiEntityType
///
public static readonly PiiEntityType BANK_ACCOUNT_NUMBER = new PiiEntityType("BANK_ACCOUNT_NUMBER");
///
/// Constant BANK_ROUTING for PiiEntityType
///
public static readonly PiiEntityType BANK_ROUTING = new PiiEntityType("BANK_ROUTING");
///
/// Constant CA_HEALTH_NUMBER for PiiEntityType
///
public static readonly PiiEntityType CA_HEALTH_NUMBER = new PiiEntityType("CA_HEALTH_NUMBER");
///
/// Constant CA_SOCIAL_INSURANCE_NUMBER for PiiEntityType
///
public static readonly PiiEntityType CA_SOCIAL_INSURANCE_NUMBER = new PiiEntityType("CA_SOCIAL_INSURANCE_NUMBER");
///
/// Constant CREDIT_DEBIT_CVV for PiiEntityType
///
public static readonly PiiEntityType CREDIT_DEBIT_CVV = new PiiEntityType("CREDIT_DEBIT_CVV");
///
/// Constant CREDIT_DEBIT_EXPIRY for PiiEntityType
///
public static readonly PiiEntityType CREDIT_DEBIT_EXPIRY = new PiiEntityType("CREDIT_DEBIT_EXPIRY");
///
/// Constant CREDIT_DEBIT_NUMBER for PiiEntityType
///
public static readonly PiiEntityType CREDIT_DEBIT_NUMBER = new PiiEntityType("CREDIT_DEBIT_NUMBER");
///
/// Constant DATE_TIME for PiiEntityType
///
public static readonly PiiEntityType DATE_TIME = new PiiEntityType("DATE_TIME");
///
/// Constant DRIVER_ID for PiiEntityType
///
public static readonly PiiEntityType DRIVER_ID = new PiiEntityType("DRIVER_ID");
///
/// Constant EMAIL for PiiEntityType
///
public static readonly PiiEntityType EMAIL = new PiiEntityType("EMAIL");
///
/// Constant IN_AADHAAR for PiiEntityType
///
public static readonly PiiEntityType IN_AADHAAR = new PiiEntityType("IN_AADHAAR");
///
/// Constant IN_NREGA for PiiEntityType
///
public static readonly PiiEntityType IN_NREGA = new PiiEntityType("IN_NREGA");
///
/// Constant IN_PERMANENT_ACCOUNT_NUMBER for PiiEntityType
///
public static readonly PiiEntityType IN_PERMANENT_ACCOUNT_NUMBER = new PiiEntityType("IN_PERMANENT_ACCOUNT_NUMBER");
///
/// Constant IN_VOTER_NUMBER for PiiEntityType
///
public static readonly PiiEntityType IN_VOTER_NUMBER = new PiiEntityType("IN_VOTER_NUMBER");
///
/// Constant INTERNATIONAL_BANK_ACCOUNT_NUMBER for PiiEntityType
///
public static readonly PiiEntityType INTERNATIONAL_BANK_ACCOUNT_NUMBER = new PiiEntityType("INTERNATIONAL_BANK_ACCOUNT_NUMBER");
///
/// Constant IP_ADDRESS for PiiEntityType
///
public static readonly PiiEntityType IP_ADDRESS = new PiiEntityType("IP_ADDRESS");
///
/// Constant LICENSE_PLATE for PiiEntityType
///
public static readonly PiiEntityType LICENSE_PLATE = new PiiEntityType("LICENSE_PLATE");
///
/// Constant MAC_ADDRESS for PiiEntityType
///
public static readonly PiiEntityType MAC_ADDRESS = new PiiEntityType("MAC_ADDRESS");
///
/// Constant NAME for PiiEntityType
///
public static readonly PiiEntityType NAME = new PiiEntityType("NAME");
///
/// Constant PASSPORT_NUMBER for PiiEntityType
///
public static readonly PiiEntityType PASSPORT_NUMBER = new PiiEntityType("PASSPORT_NUMBER");
///
/// Constant PASSWORD for PiiEntityType
///
public static readonly PiiEntityType PASSWORD = new PiiEntityType("PASSWORD");
///
/// Constant PHONE for PiiEntityType
///
public static readonly PiiEntityType PHONE = new PiiEntityType("PHONE");
///
/// Constant PIN for PiiEntityType
///
public static readonly PiiEntityType PIN = new PiiEntityType("PIN");
///
/// Constant SSN for PiiEntityType
///
public static readonly PiiEntityType SSN = new PiiEntityType("SSN");
///
/// Constant SWIFT_CODE for PiiEntityType
///
public static readonly PiiEntityType SWIFT_CODE = new PiiEntityType("SWIFT_CODE");
///
/// Constant UK_NATIONAL_HEALTH_SERVICE_NUMBER for PiiEntityType
///
public static readonly PiiEntityType UK_NATIONAL_HEALTH_SERVICE_NUMBER = new PiiEntityType("UK_NATIONAL_HEALTH_SERVICE_NUMBER");
///
/// Constant UK_NATIONAL_INSURANCE_NUMBER for PiiEntityType
///
public static readonly PiiEntityType UK_NATIONAL_INSURANCE_NUMBER = new PiiEntityType("UK_NATIONAL_INSURANCE_NUMBER");
///
/// Constant UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER for PiiEntityType
///
public static readonly PiiEntityType UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER = new PiiEntityType("UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER");
///
/// Constant URL for PiiEntityType
///
public static readonly PiiEntityType URL = new PiiEntityType("URL");
///
/// Constant US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER for PiiEntityType
///
public static readonly PiiEntityType US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER = new PiiEntityType("US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER");
///
/// Constant USERNAME for PiiEntityType
///
public static readonly PiiEntityType USERNAME = new PiiEntityType("USERNAME");
///
/// Constant VEHICLE_IDENTIFICATION_NUMBER for PiiEntityType
///
public static readonly PiiEntityType VEHICLE_IDENTIFICATION_NUMBER = new PiiEntityType("VEHICLE_IDENTIFICATION_NUMBER");
///
/// 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 PiiEntityType(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 PiiEntityType 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 PiiEntityType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RelationshipType.
///
public class RelationshipType : ConstantClass
{
///
/// Constant CHILD for RelationshipType
///
public static readonly RelationshipType CHILD = new RelationshipType("CHILD");
///
/// 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 RelationshipType(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 RelationshipType 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 RelationshipType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SentimentType.
///
public class SentimentType : ConstantClass
{
///
/// Constant MIXED for SentimentType
///
public static readonly SentimentType MIXED = new SentimentType("MIXED");
///
/// Constant NEGATIVE for SentimentType
///
public static readonly SentimentType NEGATIVE = new SentimentType("NEGATIVE");
///
/// Constant NEUTRAL for SentimentType
///
public static readonly SentimentType NEUTRAL = new SentimentType("NEUTRAL");
///
/// Constant POSITIVE for SentimentType
///
public static readonly SentimentType POSITIVE = new SentimentType("POSITIVE");
///
/// 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 SentimentType(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 SentimentType 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 SentimentType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type Split.
///
public class Split : ConstantClass
{
///
/// Constant TEST for Split
///
public static readonly Split TEST = new Split("TEST");
///
/// Constant TRAIN for Split
///
public static readonly Split TRAIN = new Split("TRAIN");
///
/// 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 Split(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 Split 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 Split(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SyntaxLanguageCode.
///
public class SyntaxLanguageCode : ConstantClass
{
///
/// Constant De for SyntaxLanguageCode
///
public static readonly SyntaxLanguageCode De = new SyntaxLanguageCode("de");
///
/// Constant En for SyntaxLanguageCode
///
public static readonly SyntaxLanguageCode En = new SyntaxLanguageCode("en");
///
/// Constant Es for SyntaxLanguageCode
///
public static readonly SyntaxLanguageCode Es = new SyntaxLanguageCode("es");
///
/// Constant Fr for SyntaxLanguageCode
///
public static readonly SyntaxLanguageCode Fr = new SyntaxLanguageCode("fr");
///
/// Constant It for SyntaxLanguageCode
///
public static readonly SyntaxLanguageCode It = new SyntaxLanguageCode("it");
///
/// Constant Pt for SyntaxLanguageCode
///
public static readonly SyntaxLanguageCode Pt = new SyntaxLanguageCode("pt");
///
/// 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 SyntaxLanguageCode(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 SyntaxLanguageCode 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 SyntaxLanguageCode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type TargetedSentimentEntityType.
///
public class TargetedSentimentEntityType : ConstantClass
{
///
/// Constant ATTRIBUTE for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType ATTRIBUTE = new TargetedSentimentEntityType("ATTRIBUTE");
///
/// Constant BOOK for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType BOOK = new TargetedSentimentEntityType("BOOK");
///
/// Constant BRAND for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType BRAND = new TargetedSentimentEntityType("BRAND");
///
/// Constant COMMERCIAL_ITEM for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType COMMERCIAL_ITEM = new TargetedSentimentEntityType("COMMERCIAL_ITEM");
///
/// Constant DATE for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType DATE = new TargetedSentimentEntityType("DATE");
///
/// Constant EVENT for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType EVENT = new TargetedSentimentEntityType("EVENT");
///
/// Constant FACILITY for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType FACILITY = new TargetedSentimentEntityType("FACILITY");
///
/// Constant GAME for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType GAME = new TargetedSentimentEntityType("GAME");
///
/// Constant LOCATION for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType LOCATION = new TargetedSentimentEntityType("LOCATION");
///
/// Constant MOVIE for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType MOVIE = new TargetedSentimentEntityType("MOVIE");
///
/// Constant MUSIC for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType MUSIC = new TargetedSentimentEntityType("MUSIC");
///
/// Constant ORGANIZATION for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType ORGANIZATION = new TargetedSentimentEntityType("ORGANIZATION");
///
/// Constant OTHER for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType OTHER = new TargetedSentimentEntityType("OTHER");
///
/// Constant PERSON for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType PERSON = new TargetedSentimentEntityType("PERSON");
///
/// Constant PERSONAL_TITLE for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType PERSONAL_TITLE = new TargetedSentimentEntityType("PERSONAL_TITLE");
///
/// Constant QUANTITY for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType QUANTITY = new TargetedSentimentEntityType("QUANTITY");
///
/// Constant SOFTWARE for TargetedSentimentEntityType
///
public static readonly TargetedSentimentEntityType SOFTWARE = new TargetedSentimentEntityType("SOFTWARE");
///
/// 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 TargetedSentimentEntityType(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 TargetedSentimentEntityType 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 TargetedSentimentEntityType(string value)
{
return FindValue(value);
}
}
}