ValidationMessage¶
- 
class oci.data_integration.models.ValidationMessage(**kwargs)¶
- Bases: - object- The level, message key, and validation message. - Methods - __init__(**kwargs)- Initializes a new ValidationMessage object with values from keyword arguments. - Attributes - level- Gets the level of this ValidationMessage. - message_key- Gets the message_key of this ValidationMessage. - validation_message- Gets the validation_message of this ValidationMessage. - 
__init__(**kwargs)¶
- Initializes a new ValidationMessage object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - level (str) – The value to assign to the level property of this ValidationMessage.
- message_key (str) – The value to assign to the message_key property of this ValidationMessage.
- validation_message (str) – The value to assign to the validation_message property of this ValidationMessage.
 
 - 
level¶
- Gets the level of this ValidationMessage. The total number of validation messages. - Returns: - The level of this ValidationMessage. - Return type: - str 
 - 
message_key¶
- Gets the message_key of this ValidationMessage. The validation message key. - Returns: - The message_key of this ValidationMessage. - Return type: - str 
 - 
validation_message¶
- Gets the validation_message of this ValidationMessage. The validation message. - Returns: - The validation_message of this ValidationMessage. - Return type: - str 
 
-