/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.sitesettings.general; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Settings related to the CDN cache. */ @JsonIgnoreProperties(ignoreUnknown = true) public class CacheSettings implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * A random string value appended to the URLs of CDN content. When a user clicks the Bust Cache button in , the random number in the URL forces the cache to point to the latest version of the CDN content. */ protected String cdnCacheBustKey; public String getCdnCacheBustKey() { return this.cdnCacheBustKey; } public void setCdnCacheBustKey(String cdnCacheBustKey) { this.cdnCacheBustKey = cdnCacheBustKey; } }