< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.FileListFromTaskNextOptions
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\FileListFromTaskNextOptions.cs
Covered lines:0
Uncovered lines:10
Coverable lines:10
Total lines:82
Line coverage:0% (0 of 10)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_ClientRequestId()-0%100%
get_ReturnClientRequestId()-0%100%
get_OcpDate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\FileListFromTaskNextOptions.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.Batch.Protocol.Models
 12{
 13    using Microsoft.Rest;
 14    using Microsoft.Rest.Serialization;
 15    using Newtonsoft.Json;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Additional parameters for ListFromTaskNext operation.
 20    /// </summary>
 21    public partial class FileListFromTaskNextOptions
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the FileListFromTaskNextOptions
 25        /// class.
 26        /// </summary>
 027        public FileListFromTaskNextOptions()
 28        {
 29            CustomInit();
 030        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the FileListFromTaskNextOptions
 34        /// class.
 35        /// </summary>
 36        /// <param name="clientRequestId">The caller-generated request
 37        /// identity, in the form of a GUID with no decoration such as curly
 38        /// braces, e.g. 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.</param>
 39        /// <param name="returnClientRequestId">Whether the server should
 40        /// return the client-request-id in the response.</param>
 41        /// <param name="ocpDate">The time the request was issued. Client
 42        /// libraries typically set this to the current system clock time; set
 43        /// it explicitly if you are calling the REST API directly.</param>
 044        public FileListFromTaskNextOptions(System.Guid? clientRequestId = default(System.Guid?), bool? returnClientReque
 45        {
 046            ClientRequestId = clientRequestId;
 047            ReturnClientRequestId = returnClientRequestId;
 048            OcpDate = ocpDate;
 49            CustomInit();
 050        }
 51
 52        /// <summary>
 53        /// An initialization method that performs custom operations like setting defaults
 54        /// </summary>
 55        partial void CustomInit();
 56
 57        /// <summary>
 58        /// Gets or sets the caller-generated request identity, in the form of
 59        /// a GUID with no decoration such as curly braces, e.g.
 60        /// 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.
 61        /// </summary>
 62        [Newtonsoft.Json.JsonIgnore]
 063        public System.Guid? ClientRequestId { get; set; }
 64
 65        /// <summary>
 66        /// Gets or sets whether the server should return the client-request-id
 67        /// in the response.
 68        /// </summary>
 69        [Newtonsoft.Json.JsonIgnore]
 070        public bool? ReturnClientRequestId { get; set; }
 71
 72        /// <summary>
 73        /// Gets or sets the time the request was issued. Client libraries
 74        /// typically set this to the current system clock time; set it
 75        /// explicitly if you are calling the REST API directly.
 76        /// </summary>
 77        [JsonConverter(typeof(DateTimeRfc1123JsonConverter))]
 78        [Newtonsoft.Json.JsonIgnore]
 079        public System.DateTime? OcpDate { get; set; }
 80
 81    }
 82}