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

com.slack.api.methods.response.team.profile.TeamProfileGetResponse Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.methods.response.team.profile;

import com.google.gson.annotations.SerializedName;
import com.slack.api.methods.SlackApiTextResponse;
import com.slack.api.model.Team;
import lombok.Data;

import java.util.List;
import java.util.Map;

@Data
public class TeamProfileGetResponse implements SlackApiTextResponse {

    private boolean ok;
    private String warning;
    private String error;
    private String needed;
    private String provided;
    private transient Map> httpResponseHeaders;

    private Profiles profile;

    @Data
    public static class Profiles {
        private List fields;
        private List
sections; @Data public static class Section { private String id; private String teamId; private String sectionType; private String label; private Integer order; @SerializedName("is_hidden") private boolean hidden; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy