Class LandingPageUploadStatusResponseModel
Represents the response model returned after importing a landing page file.
public class LandingPageUploadStatusResponseModel
- Inheritance
-
LandingPageUploadStatusResponseModel
- Inherited Members
Properties
ActivityId
Activity ID
[JsonProperty("ActivityId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string ActivityId { get; set; }
Property Value
CreationTime
DateTime when the activity was created
[JsonProperty("CreationTime", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public DateTimeOffset? CreationTime { get; set; }
Property Value
FinishTime
DateTime when the activity was completed
[JsonProperty("FinishTime", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public DateTimeOffset? FinishTime { get; set; }
Property Value
StartTime
DateTime when the activity was started
[JsonProperty("StartTime", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public DateTimeOffset? StartTime { get; set; }
Property Value
Status
Current status of the activity
[JsonProperty("Status", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Status { get; set; }
Property Value
UserId
User that started the activity
[JsonProperty("UserId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string UserId { get; set; }