From aedfa0b912a62aa509fa995f09d11a46641a13f5 Mon Sep 17 00:00:00 2001 From: Trim21 Date: Wed, 9 Aug 2023 19:15:56 +0800 Subject: [PATCH] Add Autolink API link (#2632) Co-authored-by: Enrico Minack --- github/Autolink.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/github/Autolink.py b/github/Autolink.py index 5ee2dd13..269e5f5a 100644 --- a/github/Autolink.py +++ b/github/Autolink.py @@ -26,6 +26,11 @@ from github.GithubObject import Attribute, NonCompletableGithubObject, NotSet class Autolink(NonCompletableGithubObject): + """ + This class represents Repository autolinks. + The reference can be found here https://docs.github.com/en/rest/repos/autolinks?apiVersion=2022-11-28 + """ + def _initAttributes(self) -> None: self._id: Attribute[int] = NotSet self._key_prefix: Attribute[str] = NotSet