Class DevicePreviewRunResultsDto
DevicePreviewRunResultsDto
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "DevicePreviewRunResultsDto")]
public class DevicePreviewRunResultsDto : IValidatableObject
Constructors
View SourceDevicePreviewRunResultsDto()
Initializes a new instance of the DevicePreviewRunResultsDto class.
Declaration
[JsonConstructor]
protected DevicePreviewRunResultsDto()
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 SourceRun
Gets or Sets Run
Declaration
[DataMember(Name = "run", IsRequired = true, EmitDefaultValue = true)]
public DevicePreviewRunDto Run { get; set; }
Property Value
| Type | Description |
|---|---|
| DevicePreviewRunDto |
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> |
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 SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
| Type | Description |
|---|---|
| string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | String presentation of the object |