/// <summary>
 /// Initializes a new instance of the
 /// ContainerRegistryArtifactEventData class.
 /// </summary>
 /// <param name="id">The event ID.</param>
 /// <param name="timestamp">The time at which the event
 /// occurred.</param>
 /// <param name="action">The action that encompasses the provided
 /// event.</param>
 /// <param name="target">The target of the event.</param>
 public ContainerRegistryArtifactEventData(string id = default(string), System.DateTime?timestamp = default(System.DateTime?), string action = default(string), ContainerRegistryArtifactEventTarget target = default(ContainerRegistryArtifactEventTarget))
 {
     Id        = id;
     Timestamp = timestamp;
     Action    = action;
     Target    = target;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the
 /// ContainerRegistryChartDeletedEventData class.
 /// </summary>
 /// <param name="id">The event ID.</param>
 /// <param name="timestamp">The time at which the event
 /// occurred.</param>
 /// <param name="action">The action that encompasses the provided
 /// event.</param>
 /// <param name="target">The target of the event.</param>
 public ContainerRegistryChartDeletedEventData(string id = default(string), System.DateTime?timestamp = default(System.DateTime?), string action = default(string), ContainerRegistryArtifactEventTarget target = default(ContainerRegistryArtifactEventTarget))
     : base(id, timestamp, action, target)
 {
     CustomInit();
 }