Skip to content

Instantly share code, notes, and snippets.

@seit
Created December 10, 2020 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seit/e758430b419e591486cea72e3b9a048e to your computer and use it in GitHub Desktop.
Save seit/e758430b419e591486cea72e3b9a048e to your computer and use it in GitHub Desktop.
SampleVariables.java
public class SampleVariables {
@JsonProperty("productId")
String productId;
@JsonProperty("collectionId")
String collectionId;
SampleVariables(String productId, String collectionId) {
this.productId = productId;
this.collectionId = collectionId;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment