generated/api/Models/DeleteLaptopOwnerMapping.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>This model accepts the list of laptop owner mapping to be deleted</summary>
    public partial class DeleteLaptopOwnerMapping :
        Commvault.Powershell.Models.IDeleteLaptopOwnerMapping,
        Commvault.Powershell.Models.IDeleteLaptopOwnerMappingInternal
    {

        /// <summary>Backing field for <see cref="LaptopOwnerMapping" /> property.</summary>
        private long[] _laptopOwnerMapping;

        /// <summary>Accepts list of laptop owner mapping ids to be deleted</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long[] LaptopOwnerMapping { get => this._laptopOwnerMapping; set => this._laptopOwnerMapping = value; }

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

        }
    }
    /// This model accepts the list of laptop owner mapping to be deleted
    public partial interface IDeleteLaptopOwnerMapping :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>Accepts list of laptop owner mapping ids to be deleted</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = true,
        ReadOnly = false,
        Description = @"Accepts list of laptop owner mapping ids to be deleted",
        SerializedName = @"laptopOwnerMapping",
        PossibleTypes = new [] { typeof(long) })]
        long[] LaptopOwnerMapping { get; set; }

    }
    /// This model accepts the list of laptop owner mapping to be deleted
    internal partial interface IDeleteLaptopOwnerMappingInternal

    {
        /// <summary>Accepts list of laptop owner mapping ids to be deleted</summary>
        long[] LaptopOwnerMapping { get; set; }

    }
}