- POST /v1/in/stats/send-log (DDL-02) - 특정 메시지의 개별 디바이스별 발송 로그 조회 - 플랫폼(iOS/Android/Web), 성공/실패 필터 지원 - Device Include로 디바이스 토큰, 플랫폼 정보 포함 Closes #136
24 lines
625 B
C#
24 lines
625 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace SPMS.Application.DTOs.Stats;
|
|
|
|
public class SendLogDetailRequestDto
|
|
{
|
|
[Required(ErrorMessage = "message_code는 필수입니다.")]
|
|
[JsonPropertyName("message_code")]
|
|
public string MessageCode { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("status")]
|
|
public string? Status { get; set; }
|
|
|
|
[JsonPropertyName("platform")]
|
|
public string? Platform { get; set; }
|
|
|
|
[JsonPropertyName("page")]
|
|
public int Page { get; set; } = 1;
|
|
|
|
[JsonPropertyName("size")]
|
|
public int Size { get; set; } = 20;
|
|
}
|