Class ResponseErrorData
ResponseErrorData
Inheritance
System.Object
ResponseErrorData
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Bitmovin.Api.Sdk.Models
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class ResponseErrorData
Properties
Code
Contains an error code as defined in https://bitmovin.com/encoding-documentation/bitmovin-api/#/introduction/api-error-codes (required)
Declaration
public int? Code { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Details
collection of messages containing more detailed information on the cause of the error
Declaration
public List<Message> Details { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Message> |
DeveloperMessage
More detailed message meant for developers (required)
Declaration
public string DeveloperMessage { get; }
Property Value
Type | Description |
---|---|
System.String |
Links
collection of links to webpages containing further information on the topic
Declaration
public List<Link> Links { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Link> |
Message
General error message (required)
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
System.String |