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

com.github.jamesnetherton.zulip.client.api.stream.response.UnsubscribeStreamsApiResponse Maven / Gradle / Ivy

The newest version!
package com.github.jamesnetherton.zulip.client.api.stream.response;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.jamesnetherton.zulip.client.api.core.ZulipApiResponse;
import java.util.ArrayList;
import java.util.List;

/**
 * Zulip API response class for unsubscribing from a stream.
 */
public class UnsubscribeStreamsApiResponse extends ZulipApiResponse {

    @JsonProperty
    private List notRemoved = new ArrayList<>();

    @JsonProperty
    private List removed = new ArrayList<>();

    public List getNotRemoved() {
        return notRemoved;
    }

    public List getRemoved() {
        return removed;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy