smtpbiz-exporter/internal/models/endpoints.go

15 lines
697 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package models
type EndpointsSMTP string
const (
UserDataEndpoint EndpointsSMTP = "user" // данные по подьзователю
UserStatsEndpoint EndpointsSMTP = "user/stats" // статистика по рассылкам
UserDomainsEndpoint EndpointsSMTP = "user/domain" // домены отправителя
UserIPsEndpoint EndpointsSMTP = "user/ip" // выделенные ip-адреса отправителя
LogMsgEndpoint EndpointsSMTP = "log/message" // получение отправленных писем с гет параметрами
UnsubscribeEndpoint EndpointsSMTP = "unsubscribe" // получить список отписчиков
)