github.com/akamai/AkamaiOPEN-edgegrid-golang@v1.2.2/api-endpoints-v2/gzip_settings.go (about)

     1  package apiendpoints
     2  
     3  type GzipSettings struct {
     4  	CompressResponse CompressResponseValue `json:"compressResponse"`
     5  }
     6  
     7  type CompressResponseValue string
     8  
     9  const (
    10  	CompressResponseAlways       CompressResponseValue = "ALWAYS"
    11  	CompressResponseNever        CompressResponseValue = "NEVER"
    12  	CompressResponseSameAsOrigin CompressResponseValue = "SAME_AS_ORIGIN"
    13  )