Show / Hide Table of Contents

Class ReportTimeRange

TimeRange Object

Inheritance
object
ReportTimeRange
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class ReportTimeRange

Properties

TimeFrom

Declaration
[Required(ErrorMessage = "TimeFrom is required.")]
[JsonProperty(PropertyName = "timeFrom")]
public DateTime? TimeFrom { get; set; }
Property Value
Type Description
DateTime?

Start Date for the report. An RFC3339 formatted datetime string

Remarks

Required

TimeUntil

Declaration
[Required(ErrorMessage = "TimeUntil is required.")]
[JsonProperty(PropertyName = "timeUntil")]
public DateTime? TimeUntil { get; set; }
Property Value
Type Description
DateTime?

End Date for the report. An RFC3339 formatted datetime string

Remarks

Required

In this article
Back to top