All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.switcherapi.client.model.response.SnapshotVersionResponse Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
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