namespace DomainModel.EventBridgeEvent { public class FaceComparisonDetails { /// /// Gets or sets the version of the event. /// public string? Version { get; set; } /// /// Gets or sets the bucket details. /// public Bucket? Bucket { get; set; } /// /// Gets or sets the object details. /// public S3Object? Object { get; set; } /// /// Gets or sets the ID of the API request. /// #if NETCOREAPP_3_1 [System.Text.Json.Serialization.JsonPropertyName("request-id")] #endif public string? RequestId { get; set; } /// /// Gets or sets the ID of the API requester. /// public string? Requester { get; set; } } }