generated/api/Models/DcPlanCifileFilters.cs

// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.9.4, generator: @autorest/powershell@3.0.415)
// Changes may cause incorrect behavior and will be lost if the code is regenerated.

namespace Commvault.Powershell.Models
{
    using static Commvault.Powershell.Runtime.Extensions;

    /// <summary>DCPlanCIFileFilters</summary>
    public partial class DcPlanCifileFilters :
        Commvault.Powershell.Models.IDcPlanCifileFilters,
        Commvault.Powershell.Models.IDcPlanCifileFiltersInternal
    {

        /// <summary>Backing field for <see cref="ExcludePaths" /> property.</summary>
        private string[] _excludePaths;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string[] ExcludePaths { get => this._excludePaths; set => this._excludePaths = value; }

        /// <summary>Backing field for <see cref="IncludeDocTypes" /> property.</summary>
        private string _includeDocTypes;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string IncludeDocTypes { get => this._includeDocTypes; set => this._includeDocTypes = value; }

        /// <summary>Backing field for <see cref="MaxDocSize" /> property.</summary>
        private long? _maxDocSize;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? MaxDocSize { get => this._maxDocSize; set => this._maxDocSize = value; }

        /// <summary>Backing field for <see cref="MinDocSize" /> property.</summary>
        private long? _minDocSize;

        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? MinDocSize { get => this._minDocSize; set => this._minDocSize = value; }

        /// <summary>Creates an new <see cref="DcPlanCifileFilters" /> instance.</summary>
        public DcPlanCifileFilters()
        {

        }
    }
    /// DCPlanCIFileFilters
    public partial interface IDcPlanCifileFilters :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"excludePaths",
        PossibleTypes = new [] { typeof(string) })]
        string[] ExcludePaths { get; set; }

        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"includeDocTypes",
        PossibleTypes = new [] { typeof(string) })]
        string IncludeDocTypes { get; set; }

        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"maxDocSize",
        PossibleTypes = new [] { typeof(long) })]
        long? MaxDocSize { get; set; }

        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"",
        SerializedName = @"minDocSize",
        PossibleTypes = new [] { typeof(long) })]
        long? MinDocSize { get; set; }

    }
    /// DCPlanCIFileFilters
    internal partial interface IDcPlanCifileFiltersInternal

    {
        string[] ExcludePaths { get; set; }

        string IncludeDocTypes { get; set; }

        long? MaxDocSize { get; set; }

        long? MinDocSize { get; set; }

    }
}