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

edu.ksu.canvas.requestOptions.GetSubAccountsOptions Maven / Gradle / Ivy

The newest version!
package edu.ksu.canvas.requestOptions;

public class GetSubAccountsOptions extends BaseOptions {

    String accountId;

    public GetSubAccountsOptions(String accountId) {
        this.accountId = accountId;
    }

    public String getAccountId() {
        return accountId;
    }

    public GetSubAccountsOptions recursive(Boolean recursive) {
        addSingleItem("recursive", recursive.toString());
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy