Show / Hide Table of Contents

Class ExtensionMessagesError

Extension schema for error messages providing more details with the exception status. Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.

Inheritance
object
ExtensionMessagesError
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class ExtensionMessagesError

Properties

AdditionalData

Declaration
[JsonProperty(PropertyName = "additionalData")]
public object AdditionalData { get; set; }
Property Value
Type Description
object

Contains Map based additional data for the exception message (as key-value pair). All keys and values are in string format.

MessageId

Declaration
[JsonProperty(PropertyName = "messageId")]
public string MessageId { get; set; }
Property Value
Type Description
string

Internal error keyword pointing to the exception status message. REQUIRED.

In this article
Back to top