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

io.github.sashirestela.openai.common.PageRequest Maven / Gradle / Ivy

The newest version!
package io.github.sashirestela.openai.common;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
import lombok.Getter;

@Getter
@Builder
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class PageRequest {

    private Integer limit;
    private Order order;
    private String after;
    private String before;

    public enum Order {

        @JsonProperty("asc")
        ASC,

        @JsonProperty("desc")
        DESC

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy