com.github.iskrenyp.slackreporter.SlackReporterConfigEntity.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spock-slack-reporter Show documentation
Show all versions of spock-slack-reporter Show documentation
A simple annotation driven local extension for Spock framework, which enables you to screen record your Specifications
package com.github.iskrenyp.slackreporter
import com.github.iskrenyp.core.api.config.IConfigurableEntity
import com.ullink.slack.simpleslackapi.SlackPreparedMessage
import groovy.transform.TupleConstructor
@TupleConstructor
class SlackReporterConfigEntity implements IConfigurableEntity {
String reportUrl
String channelName
String userToken
String environment
SlackPreparedMessage message
}