/** * Copyright 2022 Gravwell, Inc. All rights reserved. * * Contact: [legal@gravwell.io](mailto:legal@gravwell.io) * * This software may be modified and distributed under the terms of the MIT * license. See the LICENSE file for details. */ import { RawNumericID, RawUUID } from '../../value-objects/id'; export interface RawPlaybook { UUID: RawUUID; GUID: RawUUID; UID: RawNumericID; GIDs: Array | null; Global: boolean; Name: string; Desc: string; /** * A playbook can be created without body. In this case, the Body property * will not be present. * * Base64 encoded markdown string, it comes as an empty string when requesting * multiple playbooks. */ Body?: string | null | undefined; Metadata: string; Labels: Array | null; LastUpdated: string; Author: { Name: string; Email: string; Company: string; URL: string; }; }