Files
github-api/src/main/java/org/kohsuke/github/GHContentUpdateResponse.java
Liam Newman 757b9b2118 Add JavaDocs
Do using IntelliJ JavaDocs plugin. Better to have something than nothing.
2019-11-14 13:24:28 -08:00

28 lines
476 B
Java

package org.kohsuke.github;
/**
* The response that is returned when updating repository content.
*/
public class GHContentUpdateResponse {
private GHContent content;
private GHCommit commit;
/**
* Gets content.
*
* @return the content
*/
public GHContent getContent() {
return content;
}
/**
* Gets commit.
*
* @return the commit
*/
public GHCommit getCommit() {
return commit;
}
}