Search Results for

    Show / Hide Table of Contents

    Class DevicePreviewProviderProgressDto

    DevicePreviewProviderProgressDto

    Inheritance
    object
    DevicePreviewProviderProgressDto
    Implements
    IValidatableObject
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: mailslurp.Model
    Assembly: mailslurp.dll
    Syntax
    [DataContract(Name = "DevicePreviewProviderProgressDto")]
    public class DevicePreviewProviderProgressDto : IValidatableObject

    Constructors

    View Source

    DevicePreviewProviderProgressDto()

    Initializes a new instance of the DevicePreviewProviderProgressDto class.

    Declaration
    [JsonConstructor]
    protected DevicePreviewProviderProgressDto()
    View Source

    DevicePreviewProviderProgressDto(DevicePreviewRunDto, ProviderEnum, StatusEnum, long, long, long, long, long, List<DevicePreviewTargetDto>, List<DevicePreviewScreenshotDto>)

    Initializes a new instance of the DevicePreviewProviderProgressDto class.

    Declaration
    public DevicePreviewProviderProgressDto(DevicePreviewRunDto run = null, DevicePreviewProviderProgressDto.ProviderEnum provider = (DevicePreviewProviderProgressDto.ProviderEnum)0, DevicePreviewProviderProgressDto.StatusEnum status = (DevicePreviewProviderProgressDto.StatusEnum)0, long targetCount = 0, long readyCount = 0, long failedCount = 0, long capturingCount = 0, long pendingCount = 0, List<DevicePreviewTargetDto> targets = null, List<DevicePreviewScreenshotDto> screenshots = null)
    Parameters
    Type Name Description
    DevicePreviewRunDto run

    run (required).

    DevicePreviewProviderProgressDto.ProviderEnum provider

    provider (required).

    DevicePreviewProviderProgressDto.StatusEnum status

    status (required).

    long targetCount

    targetCount (required).

    long readyCount

    readyCount (required).

    long failedCount

    failedCount (required).

    long capturingCount

    capturingCount (required).

    long pendingCount

    pendingCount (required).

    List<DevicePreviewTargetDto> targets

    targets (required).

    List<DevicePreviewScreenshotDto> screenshots

    screenshots (required).

    Properties

    View Source

    CapturingCount

    Gets or Sets CapturingCount

    Declaration
    [DataMember(Name = "capturingCount", IsRequired = true, EmitDefaultValue = true)]
    public long CapturingCount { get; set; }
    Property Value
    Type Description
    long
    View Source

    FailedCount

    Gets or Sets FailedCount

    Declaration
    [DataMember(Name = "failedCount", IsRequired = true, EmitDefaultValue = true)]
    public long FailedCount { get; set; }
    Property Value
    Type Description
    long
    View Source

    PendingCount

    Gets or Sets PendingCount

    Declaration
    [DataMember(Name = "pendingCount", IsRequired = true, EmitDefaultValue = true)]
    public long PendingCount { get; set; }
    Property Value
    Type Description
    long
    View Source

    Provider

    Gets or Sets Provider

    Declaration
    [DataMember(Name = "provider", IsRequired = true, EmitDefaultValue = true)]
    public DevicePreviewProviderProgressDto.ProviderEnum Provider { get; set; }
    Property Value
    Type Description
    DevicePreviewProviderProgressDto.ProviderEnum
    View Source

    ReadyCount

    Gets or Sets ReadyCount

    Declaration
    [DataMember(Name = "readyCount", IsRequired = true, EmitDefaultValue = true)]
    public long ReadyCount { get; set; }
    Property Value
    Type Description
    long
    View Source

    Run

    Gets or Sets Run

    Declaration
    [DataMember(Name = "run", IsRequired = true, EmitDefaultValue = true)]
    public DevicePreviewRunDto Run { get; set; }
    Property Value
    Type Description
    DevicePreviewRunDto
    View Source

    Screenshots

    Gets or Sets Screenshots

    Declaration
    [DataMember(Name = "screenshots", IsRequired = true, EmitDefaultValue = true)]
    public List<DevicePreviewScreenshotDto> Screenshots { get; set; }
    Property Value
    Type Description
    List<DevicePreviewScreenshotDto>
    View Source

    Status

    Gets or Sets Status

    Declaration
    [DataMember(Name = "status", IsRequired = true, EmitDefaultValue = true)]
    public DevicePreviewProviderProgressDto.StatusEnum Status { get; set; }
    Property Value
    Type Description
    DevicePreviewProviderProgressDto.StatusEnum
    View Source

    TargetCount

    Gets or Sets TargetCount

    Declaration
    [DataMember(Name = "targetCount", IsRequired = true, EmitDefaultValue = true)]
    public long TargetCount { get; set; }
    Property Value
    Type Description
    long
    View Source

    Targets

    Gets or Sets Targets

    Declaration
    [DataMember(Name = "targets", IsRequired = true, EmitDefaultValue = true)]
    public List<DevicePreviewTargetDto> Targets { get; set; }
    Property Value
    Type Description
    List<DevicePreviewTargetDto>

    Methods

    View Source

    ToJson()

    Returns the JSON string presentation of the object

    Declaration
    public virtual string ToJson()
    Returns
    Type Description
    string

    JSON string presentation of the object

    View Source

    ToString()

    Returns the string presentation of the object

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    String presentation of the object

    Overrides
    object.ToString()

    Implements

    IValidatableObject
    • View Source
    In this article
    Back to top See MailSlurp website for more information.