mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-03 08:21:23 +00:00
19 lines
345 B
Java
19 lines
345 B
Java
package org.kohsuke.github;
|
|
|
|
/**
|
|
* The response that is returned when updating
|
|
* repository content.
|
|
**/
|
|
public final class GHContentUpdateResponse {
|
|
private GHContent content;
|
|
private GHCommit commit;
|
|
|
|
public GHContent getContent() {
|
|
return content;
|
|
}
|
|
|
|
public GHCommit getCommit() {
|
|
return commit;
|
|
}
|
|
}
|