generated/api/Models/UpdateCvfss3CloneReq.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>UpdateCVFSS3CloneExpiryTime</summary>
    public partial class UpdateCvfss3CloneReq :
        Commvault.Powershell.Models.IUpdateCvfss3CloneReq,
        Commvault.Powershell.Models.IUpdateCvfss3CloneReqInternal
    {

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

        /// <summary>Bucket clone expiry time in UNIX format</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? ExpiryTime { get => this._expiryTime; set => this._expiryTime = value; }

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

        }
    }
    /// UpdateCVFSS3CloneExpiryTime
    public partial interface IUpdateCvfss3CloneReq :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>Bucket clone expiry time in UNIX format</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Bucket clone expiry time in UNIX format",
        SerializedName = @"expiryTime",
        PossibleTypes = new [] { typeof(long) })]
        long? ExpiryTime { get; set; }

    }
    /// UpdateCVFSS3CloneExpiryTime
    internal partial interface IUpdateCvfss3CloneReqInternal

    {
        /// <summary>Bucket clone expiry time in UNIX format</summary>
        long? ExpiryTime { get; set; }

    }
}