Files
scla-unsubscribe/types.go
2023-12-26 15:01:55 -06:00

15 lines
388 B
Go

package main
type ConfirmationResponse struct {
FormId string `json:"formId"`
FollowUpUrl string `json:"followUpUrl"`
DeliveryType string `json:"deliveryType"`
FollowUpStreamValue string `json:"followUpStreamValue"`
AliId string `json:"aliId"`
}
type ErrorResponse struct {
Message string `json:"message"`
Code int `json:"code"`
}