File tree 1 file changed +4
-5
lines changed
libs/sparkpost-lib/src/main/java/com/sparkpost/model
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
2
2
package com .sparkpost .model ;
3
3
4
- import java .util .HashMap ;
5
- import java .util .Map ;
6
-
7
4
import com .google .gson .annotations .SerializedName ;
8
5
import com .yepher .jsondoc .annotations .Description ;
9
-
10
6
import lombok .Data ;
11
7
import lombok .EqualsAndHashCode ;
12
8
9
+ import java .util .HashMap ;
10
+ import java .util .Map ;
11
+
13
12
/**
14
13
* DTO for storing substitution data (list of key=value).
15
14
*/
16
15
@ Data
17
16
@ EqualsAndHashCode (callSuper = true )
18
17
public class TemplateSubstitutionData extends Base {
19
18
20
- @ Description (value = "Data the will be substituted into the template" , sample = {"Dictionary of ssubstitution data" })
19
+ @ Description (value = "Data the will be substituted into the template" , sample = {"Dictionary of substitution data" })
21
20
@ SerializedName ("substitution_data" )
22
21
private Map <String , String > substitutionData = new HashMap <String , String >();
23
22
You can’t perform that action at this time.
0 commit comments