hugo-mx-gateway/request.go

16 lines
461 B
Go
Raw Normal View History

2020-05-10 00:02:18 +02:00
package main
type ContactRequest struct {
Name string `json:"name,omitempty"`
Email string `json:"email,omitempty"`
Organization string `json:"organization,omitempty"`
Subject string `json:"subject,omitempty"`
Message string `json:"message,omitempty"`
RequestTarget string `json:"requestType,omitempty"`
}
type ContactResponse struct {
Status string `json:"status,omitempty"`
Message string `json:"message,omitempty"`
}