Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public class AmpClickEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public class AmpInitialOpenEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public class AmpOpenEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public class BounceEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public class ClickEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public class DelayEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class DeliveryEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public class InitialOpenEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public class InjectionEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public class LinkUnsubscribeEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public class ListUnsubscribeEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public class OpenEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public class AmpClickEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public class AmpInitialOpenEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public class AmpOpenEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public class BounceEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public class ClickEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public class DelayEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public class DeliveryEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public class InitialOpenEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public class InjectionEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public class LinkUnsubscribeEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public class ListUnsubscribeEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public class OpenEvent extends Base {
@Description(
value = "Indicates whether or not click tracking was enabled",
sample = "true")
private int clickTracking;
private boolean clickTracking;

@SerializedName("rcpt_meta")
@Description(
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.sparkpost</groupId>
<artifactId>sparkpost</artifactId>
<version>0.27</version>
<version>0.28</version>
<packaging>pom</packaging>
<name>*** SparkPost Java Code ***</name>
<description>SparkPost client library for Java https://www.sparkpost.com/</description>
Expand Down