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

com.arextest.schedule.model.deploy.DeploymentImage Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.arextest.schedule.model.deploy;

import com.fasterxml.jackson.annotation.JsonAlias;
import lombok.Data;

/**
 * @author jmo
 * @since 2021/9/18
 */
@Data
public class DeploymentImage {

  private String id;
  private String name;

  /**
   * The author of source code
   */
  private String creator;

  /**
   * from the latest of git push commit message
   */
  private String note;
  @JsonAlias("created_at")
  private String createdAt;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy