Show / Hide Table of Contents

    Class WeekDetails

    Properties of a weekly schedule.

    Inheritance
    Object
    WeekDetails
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.DevTestLabs.dll
    Syntax
    public class WeekDetails

    Constructors

    WeekDetails()

    Initializes a new instance of the WeekDetails class.

    Declaration
    public WeekDetails ();

    WeekDetails(IList<String>, String)

    Initializes a new instance of the WeekDetails class.

    Declaration
    public WeekDetails (System.Collections.Generic.IList<string> weekdays = null, string time = null);
    Parameters
    IList<String> weekdays

    The days of the week for which the schedule is set (e.g. Sunday, Monday, Tuesday, etc.).

    String time

    The time of the day the schedule will occur.

    Properties

    Time

    Gets or sets the time of the day the schedule will occur.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="time")]
    public string Time { get; set; }
    Property Value
    String

    Weekdays

    Gets or sets the days of the week for which the schedule is set (e.g. Sunday, Monday, Tuesday, etc.).

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="weekdays")]
    public System.Collections.Generic.IList<string> Weekdays { get; set; }
    Property Value
    IList<String>

    Back to top Azure SDK for Net