Search Results for

    Show / Hide Table of Contents

    Class ContentImportResult

    Represents an item imported during a content import

    Inheritance
    object
    ContentImportResult
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class ContentImportResult

    Properties

    ContentId

    ID of the resulting content.

    Declaration
    [JsonProperty("contentId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string ContentId { get; set; }
    Property Value
    string

    Error

    If the operation did not succeeded, this contains error related information.

    Declaration
    [JsonProperty("error", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ErrorResponse Error { get; set; }
    Property Value
    ErrorResponse

    FileTransferId

    ID of the file transfer.

    Declaration
    [JsonProperty("fileTransferId", Required = Required.Always)]
    [Required]
    public string FileTransferId { get; set; }
    Property Value
    string

    State

    State of the item.

    Declaration
    [JsonProperty("state", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string State { get; set; }
    Property Value
    string

    Succeeded

    Indicates if the operation succeeded.

    Declaration
    [JsonProperty("succeeded", Required = Required.Always)]
    public bool Succeeded { get; set; }
    Property Value
    bool

    Methods

    FromJson(string)

    Declaration
    public static ContentImportResult FromJson(string data)
    Parameters
    string data

    Returns
    ContentImportResult

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX