Files
PyGithub/github/GithubObjects/GistComment.py
T

14 lines
352 B
Python

from NamedUser import *
GistComment = GithubObject(
"GistComment",
BaseUrl( lambda obj: "/gists/comments/" + str( obj.id ) ),
InternalSimpleAttributes(
"id", "url", "body", "created_at",
"updated_at",
),
InternalObjectAttribute( "user", NamedUser ),
Editable( Parameters( [ "body" ], [] ) ),
Deletable(),
)