com.nulabinc.backlog4j.api.option.GetWatchesParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of backlog4j Show documentation
Show all versions of backlog4j Show documentation
Backlog4j is a Backlog binding library for Java.
package com.nulabinc.backlog4j.api.option;
import com.nulabinc.backlog4j.http.NameValuePair;
/**
* Parameters for get watch API.
*
* @author nulab-inc
*/
public class GetWatchesParams extends GetParams {
public GetWatchesParams alreadyRead(boolean alreadyRead) {
parameters.add(new NameValuePair("alreadyRead", String.valueOf(alreadyRead)));
return this;
}
public GetWatchesParams resourceAlreadyRead(boolean resourceAlreadyRead) {
parameters.add(new NameValuePair("resourceAlreadyRead", String.valueOf(resourceAlreadyRead)));
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy