All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cloud.chain.git.api.dto.ReposFileInfo Maven / Gradle / Ivy

The newest version!
package cloud.chain.git.api.dto;

import lombok.Data;

/**
 *  wuXiaoMing
 *  2023/2/19 13:43
 */
@Data
public class ReposFileInfo {

    /**
     * The commit message.
     */
    private String message;
    /**
     * The new file content, using Base64 encoding.
     */
    private String content;
    /**
     * Required if you are updating a file. The blob SHA of the file being replaced.
     */
    private String sha;
    /**
     * The branch name. Default: the repository’s default branch (usually master)
     */
    private String branch;
    /**
     * The person that committed the file. Default: the authenticated user.
     */
    private String committer;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy