org.kohsuke.github.GHContentUpdateResponse Maven / Gradle / Ivy
package org.kohsuke.github;
/**
* The response that is returned when updating
* repository content.
**/
public class GHContentUpdateResponse {
private GHContent content;
private GHCommit commit;
public GHContent getContent() {
return content;
}
public GHCommit getCommit() {
return commit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy