Skip to content

Instantly share code, notes, and snippets.

@borodicht
Created December 26, 2024 18:27
Show Gist options
  • Save borodicht/f2de5bda2b250ebce87cd1ae1f2e3330 to your computer and use it in GitHub Desktop.
Save borodicht/f2de5bda2b250ebce87cd1ae1f2e3330 to your computer and use it in GitHub Desktop.
package models;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@Data
public class CreateProjectRs {
@SerializedName("status")
@Expose
private Boolean status;
@SerializedName("result")
@Expose
private Result result;
}
package models;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
@Data
public class Result {
@SerializedName("code")
@Expose
private String code;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment