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

com.slack.api.model.Confirmation Maven / Gradle / Ivy

There is a newer version: 1.44.1
Show newest version
package com.slack.api.model;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class Confirmation {
    public static final String OKAY = "Okay";
    public static final String DISMISS = "Cancel";
    private String title;
    private String text;
    @Builder.Default
    private String okText = OKAY;
    @Builder.Default
    private String dismissText = DISMISS;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy