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

com.slack.api.status.v2.model.SlackIssue Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.status.v2.model;

import lombok.Data;

import java.util.List;

@Data
public class SlackIssue {
    private Integer id;
    private String dateCreated;
    private String dateUpdated;
    private String title;
    private String type;
    private String status;
    private String url;
    private List services;
    private List notes;

    @Data
    public static class Note {
        private String dateCreated;
        private String body;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy