2025-12-10 02:37:31 +07:00
|
|
|
package ru.soune.no_copy.dto;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
public class BaseRequest {
|
|
|
|
|
@JsonProperty("version")
|
|
|
|
|
Integer version;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("msg_id")
|
|
|
|
|
Integer msgId;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("message_body")
|
|
|
|
|
Object messageBody;
|
|
|
|
|
}
|