Sometimes is difficult to extract this info, here the documentation and examples:

NameTypeDefaultDescription
titleStringThe title text of the flag.
bodyStringThe body text of the flag.
typeStringinfoSets the type of the message. Valid options are “info“, “success“, “warning” and “error“.
closeStringThe closing behaviour that this flag has. Valid options are “manual“, and “auto“.
actionsObjectMap of {actionIdentifier: ‘Action link text’} to add to the flag. The actionIdentifier will be passed to a ‘flag.action’ event if the link is clicked.


Examples:
// Display a nice green flag using the Flags JavaScript API.
var flag = AP.flag.create({
  title: 'Successfully created a flag.',
  body: 'This is a flag.',
  type: 'success',
  actions: {
    'actionkey': 'Click me'
  }
});

Other:

def flag = [
        type : ‘success’,
        title: “Plan reviewed”,
        close: ‘auto’,
        body : “Deleted outdated artifacts from $planKey”
    ]

By MrAddon

.

Posted by:.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s