Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2026-02-26 00:02:10 +00:00
parent 56961b307e
commit f61298d6c1
2 changed files with 6 additions and 4 deletions
@@ -48,7 +48,7 @@ public class CreateRepoOption implements Serializable {
@SerializedName("name")
private String name = null;
/** ObjectFormatName of the underlying git repository */
/** ObjectFormatName of the underlying git repository, empty string for default (sha1) */
@JsonAdapter(ObjectFormatNameEnum.Adapter.class)
public enum ObjectFormatNameEnum {
SHA1("sha1"),
@@ -294,11 +294,13 @@ public class CreateRepoOption implements Serializable {
}
/**
* ObjectFormatName of the underlying git repository
* ObjectFormatName of the underlying git repository, empty string for default (sha1)
*
* @return objectFormatName
*/
@Schema(description = "ObjectFormatName of the underlying git repository")
@Schema(
description =
"ObjectFormatName of the underlying git repository, empty string for default (sha1)")
public ObjectFormatNameEnum getObjectFormatName() {
return objectFormatName;
}