
io.gs2.cdk.core.model.AcquireAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gs2-java-cdk Show documentation
Show all versions of gs2-java-cdk Show documentation
Game Server Services CDK for Java
The newest version!
package io.gs2.cdk.core.model;
import java.util.HashMap;
import java.util.Map;
public class AcquireAction {
String action;
Map request;
public AcquireAction(
String action,
Map request
) {
this.action = action;
this.request = request;
}
public Map properties() {
return new HashMap<>() {
{
put("action", action);
put("request", request);
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy