17 lines
453 B
Go
17 lines
453 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type CampaignFilesResponse struct {
|
|
ID uint `json:"id"`
|
|
CampaignID uint `json:"campaign_id"`
|
|
Type string `json:"type"`
|
|
FileURL *string `json:"file_url"`
|
|
ExternalURL *string `json:"external_url"`
|
|
IsDraft *bool `json:"is_draft"`
|
|
IsPublish *bool `json:"is_publish"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|