Skip to content

Commit

Permalink
Merge pull request #233 from mercadopago/develop-v1
Browse files Browse the repository at this point in the history
Add linkedTo parameter
  • Loading branch information
rhames07 authored Jul 6, 2022
2 parents f20e97b + 49f49b3 commit 648a207
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.mercadopago</groupId>
<artifactId>sdk-java</artifactId>
<version>1.11.3</version>
<version>1.11.4</version>
<packaging>jar</packaging>

<name>Mercadopago SDK</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
public class PointOfInteraction {
private String type;
private String subType;
private String linkedTo;
private ApplicationData applicationData;
private TransactionData transactionData;

Expand Down Expand Up @@ -41,6 +42,23 @@ public PointOfInteraction setSubType(String subType) {
return this;
}

/**
* @return linked to information
*/
public String getLinkedTo() {
return linkedTo;
}


/**
* @param linkedTo linked to information
* @return point of interaction
*/
public PointOfInteraction setLinkedTo(String linkedTo) {
this.linkedTo = linkedTo;
return this;
}

/**
* @return application data
*/
Expand Down

0 comments on commit 648a207

Please sign in to comment.