Gio.ActionEntry

const Gio = imports.gi.Gio;

let actionEntry = new Gio.ActionEntry();
  

This struct defines a single action. It is for use with Gio.ActionMap.prototype.add_action_entries.

The order of the items in the structure are intended to reflect frequency of use. It is permissible to use an incomplete initialiser in order to leave some of the later values as null. All values after @name are optional. Additional optional fields may be added in the future.

See Gio.ActionMap.prototype.add_action_entries for an example.