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

com.devcycle.sdk.server.common.model.ProjectConfig Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package com.devcycle.sdk.server.common.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
public class ProjectConfig {

    @Schema(description = "Project Settings")
    private Object project;

    @Schema(description = "Environment Key & ID")
    private Object environment;

    @Schema(description = "List of Features in this Project")
    private Object[] features;

    @Schema(description = "List of Variables in this Project")
    private Object[] variables;

    @Schema(description = "Audiences in this Project indexed by ID")
    private Object audiences;

    @Schema(description = "Variable Hashes for all Variables in this Project")
    private Object variableHashes;

    @Schema(description = "SSE Configuration")
    private SSE sse;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy