File: gzip_settings.go

package info (click to toggle)
golang-github-akamai-akamaiopen-edgegrid-golang 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,408 kB
  • sloc: sh: 532; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 359 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
package apiendpoints

type GzipSettings struct {
	CompressResponse CompressResponseValue `json:"compressResponse"`
}

type CompressResponseValue string

const (
	CompressResponseAlways       CompressResponseValue = "ALWAYS"
	CompressResponseNever        CompressResponseValue = "NEVER"
	CompressResponseSameAsOrigin CompressResponseValue = "SAME_AS_ORIGIN"
)