com.github.switcherapi.client.model.response.SnapshotVersionResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of switcher-client Show documentation
Show all versions of switcher-client Show documentation
Switcher Client SDK for working with Switcher API
package com.github.switcherapi.client.model.response;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
/**
* @author Roger Floriano (petruki)
* @since 2020-05-13
*/
@JsonSerialize
public class SnapshotVersionResponse {
private boolean status;
public boolean isUpdated() {
return status;
}
public void setStatus(boolean status) {
this.status = status;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy