2023-06-22 09:36:43 +00:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"penahub.gitlab.yandexcloud.net/pena-services/customer/internal/errors"
|
|
|
|
"penahub.gitlab.yandexcloud.net/pena-services/customer/internal/models"
|
|
|
|
)
|
|
|
|
|
|
|
|
func ValidateGetPaymentLinkBody(request *models.GetPaymentLinkBody) errors.Error {
|
|
|
|
if request == nil {
|
|
|
|
return errors.NewWithMessage("request body is empty", errors.ErrInvalidArgs)
|
|
|
|
}
|
|
|
|
|
2024-03-17 22:13:56 +00:00
|
|
|
return nil
|
2023-06-22 09:36:43 +00:00
|
|
|
}
|