/** * Permit.io API * Authorization as a service * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ResourceActionGroupCreate */ export interface ResourceActionGroupCreate { /** * A URL-friendly name of the action group (i.e: slug). You will be able to query later using this key instead of the id (UUID) of the action group. * @type {string} * @memberof ResourceActionGroupCreate */ key: string; /** * The name of the action group * @type {string} * @memberof ResourceActionGroupCreate */ name: string; /** * An optional longer description of what this action group represents in your system * @type {string} * @memberof ResourceActionGroupCreate */ description?: string; /** * optional dictionary of key-value pairs that can be used to store arbitrary metadata about this action group. This metadata can be used to filter action groups using query parameters with attr_ prefix * @type {object} * @memberof ResourceActionGroupCreate */ attributes?: object; /** * * @type {Array} * @memberof ResourceActionGroupCreate */ actions?: Array; }