Search Results for

    Show / Hide Table of Contents

    Class DevicePreviewRunResultsDto

    DevicePreviewRunResultsDto

    Inheritance
    object
    DevicePreviewRunResultsDto
    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 = "DevicePreviewRunResultsDto")]
    public class DevicePreviewRunResultsDto : IValidatableObject

    Constructors

    View Source

    DevicePreviewRunResultsDto()

    Initializes a new instance of the DevicePreviewRunResultsDto class.

    Declaration
    [JsonConstructor]
    protected DevicePreviewRunResultsDto()
    View Source

    DevicePreviewRunResultsDto(DevicePreviewRunDto, List<DevicePreviewTargetDto>, List<DevicePreviewScreenshotDto>)

    Initializes a new instance of the DevicePreviewRunResultsDto class.

    Declaration
    public DevicePreviewRunResultsDto(DevicePreviewRunDto run = null, List<DevicePreviewTargetDto> targets = null, List<DevicePreviewScreenshotDto> screenshots = null)
    Parameters
    Type Name Description
    DevicePreviewRunDto run

    run (required).

    List<DevicePreviewTargetDto> targets

    targets (required).

    List<DevicePreviewScreenshotDto> screenshots

    screenshots (required).

    Properties

    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

    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.