/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { SimpleUserAsResponse } from "../definitions/SimpleUserAsResponse"; export interface IntegrationAsResponse { /** * Unique identifier of the GitHub app */ id: number; /** * The slug name of the GitHub app */ slug?: string; node_id: string; owner: null | SimpleUserAsResponse; /** * The name of the GitHub app */ name: string; description: string | null; external_url: string; html_url: string; created_at: string; updated_at: string; /** * The set of permissions for the GitHub app */ permissions: { issues?: string; checks?: string; metadata?: string; contents?: string; deployments?: string; [x: string]: string | undefined; }; /** * The list of events for the GitHub app */ events: Array; /** * The number of installations associated with the GitHub app */ installations_count?: number; client_id?: string; client_secret?: string; webhook_secret?: string | null; pem?: string; } //# sourceMappingURL=IntegrationAsResponse.d.ts.map