/src/com/campaignmonitor/api/types/TemplateUpdate.java

https://github.com/lightbody/jcm · Java · 204 lines · 66 code · 18 blank · 120 comment · 0 complexity · 418ac41c8c7bad30cd3462b50b7deb05 MD5 · raw file

  1. package com.campaignmonitor.api.types;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. import javax.xml.bind.annotation.XmlElement;
  5. import javax.xml.bind.annotation.XmlRootElement;
  6. import javax.xml.bind.annotation.XmlType;
  7. /**
  8. * <p>Java class for anonymous complex type.
  9. *
  10. * <p>The following schema fragment specifies the expected content contained within this class.
  11. *
  12. * <pre>
  13. * &lt;complexType>
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;sequence>
  17. * &lt;element name="ApiKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  18. * &lt;element name="TemplateID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  19. * &lt;element name="TemplateName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  20. * &lt;element name="HTMLPageURL" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  21. * &lt;element name="ZipFileURL" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  22. * &lt;element name="ScreenshotURL" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  23. * &lt;/sequence>
  24. * &lt;/restriction>
  25. * &lt;/complexContent>
  26. * &lt;/complexType>
  27. * </pre>
  28. *
  29. *
  30. */
  31. @XmlAccessorType(XmlAccessType.FIELD)
  32. @XmlType(name = "", propOrder = {
  33. "apiKey",
  34. "templateID",
  35. "templateName",
  36. "htmlPageURL",
  37. "zipFileURL",
  38. "screenshotURL"
  39. })
  40. @XmlRootElement(name = "Template.Update")
  41. public class TemplateUpdate {
  42. @XmlElement(name = "ApiKey")
  43. protected String apiKey;
  44. @XmlElement(name = "TemplateID")
  45. protected String templateID;
  46. @XmlElement(name = "TemplateName")
  47. protected String templateName;
  48. @XmlElement(name = "HTMLPageURL")
  49. protected String htmlPageURL;
  50. @XmlElement(name = "ZipFileURL")
  51. protected String zipFileURL;
  52. @XmlElement(name = "ScreenshotURL")
  53. protected String screenshotURL;
  54. /**
  55. * Gets the value of the apiKey property.
  56. *
  57. * @return
  58. * possible object is
  59. * {@link String }
  60. *
  61. */
  62. public String getApiKey() {
  63. return apiKey;
  64. }
  65. /**
  66. * Sets the value of the apiKey property.
  67. *
  68. * @param value
  69. * allowed object is
  70. * {@link String }
  71. *
  72. */
  73. public void setApiKey(String value) {
  74. this.apiKey = value;
  75. }
  76. /**
  77. * Gets the value of the templateID property.
  78. *
  79. * @return
  80. * possible object is
  81. * {@link String }
  82. *
  83. */
  84. public String getTemplateID() {
  85. return templateID;
  86. }
  87. /**
  88. * Sets the value of the templateID property.
  89. *
  90. * @param value
  91. * allowed object is
  92. * {@link String }
  93. *
  94. */
  95. public void setTemplateID(String value) {
  96. this.templateID = value;
  97. }
  98. /**
  99. * Gets the value of the templateName property.
  100. *
  101. * @return
  102. * possible object is
  103. * {@link String }
  104. *
  105. */
  106. public String getTemplateName() {
  107. return templateName;
  108. }
  109. /**
  110. * Sets the value of the templateName property.
  111. *
  112. * @param value
  113. * allowed object is
  114. * {@link String }
  115. *
  116. */
  117. public void setTemplateName(String value) {
  118. this.templateName = value;
  119. }
  120. /**
  121. * Gets the value of the htmlPageURL property.
  122. *
  123. * @return
  124. * possible object is
  125. * {@link String }
  126. *
  127. */
  128. public String getHTMLPageURL() {
  129. return htmlPageURL;
  130. }
  131. /**
  132. * Sets the value of the htmlPageURL property.
  133. *
  134. * @param value
  135. * allowed object is
  136. * {@link String }
  137. *
  138. */
  139. public void setHTMLPageURL(String value) {
  140. this.htmlPageURL = value;
  141. }
  142. /**
  143. * Gets the value of the zipFileURL property.
  144. *
  145. * @return
  146. * possible object is
  147. * {@link String }
  148. *
  149. */
  150. public String getZipFileURL() {
  151. return zipFileURL;
  152. }
  153. /**
  154. * Sets the value of the zipFileURL property.
  155. *
  156. * @param value
  157. * allowed object is
  158. * {@link String }
  159. *
  160. */
  161. public void setZipFileURL(String value) {
  162. this.zipFileURL = value;
  163. }
  164. /**
  165. * Gets the value of the screenshotURL property.
  166. *
  167. * @return
  168. * possible object is
  169. * {@link String }
  170. *
  171. */
  172. public String getScreenshotURL() {
  173. return screenshotURL;
  174. }
  175. /**
  176. * Sets the value of the screenshotURL property.
  177. *
  178. * @param value
  179. * allowed object is
  180. * {@link String }
  181. *
  182. */
  183. public void setScreenshotURL(String value) {
  184. this.screenshotURL = value;
  185. }
  186. }