mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-07 08:21:22 +00:00
28 lines
476 B
Java
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;
|
|
}
|
|
}
|