net.commuty.parking.rest.VerificationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parking-access-api-client Show documentation
Show all versions of parking-access-api-client Show documentation
This package acts as a client to communicate with the Commuty Parking Access API. It avoids you to deal with HTTP directly and provides you proper data structures to work with the API.
The newest version!
package net.commuty.parking.rest;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import net.commuty.parking.model.UserId;
class VerificationRequest {
private final UserId userId;
@JsonCreator
VerificationRequest(@JsonProperty("userId") UserId userId) {
this.userId = userId;
}
@JsonProperty("userId")
public UserId getUserId() {
return userId;
}
}