18 lines
488 B
Go
18 lines
488 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type CampaignFilesResponse struct {
|
|
ID uint `json:"id"`
|
|
CampaignID uint `json:"campaignId"`
|
|
Type string `json:"type"`
|
|
FileURL *string `json:"fileUrl"`
|
|
ExternalURL *string `json:"externalUrl"`
|
|
IsDraft *bool `json:"isDraft"`
|
|
IsPublish *bool `json:"isPublish"`
|
|
IsActive *bool `json:"isActive"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|
|
|