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

one.credify.sdk.dto.OfferEvaluationResult Maven / Gradle / Ivy

There is a newer version: v0.4.9
Show newest version
package one.credify.sdk.dto;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;
import lombok.experimental.FieldDefaults;

import java.util.List;

@AllArgsConstructor
@NoArgsConstructor
@Builder
@Getter
@Setter
@FieldDefaults(level = AccessLevel.PRIVATE)
@JsonIgnoreProperties(ignoreUnknown = true)
public class OfferEvaluationResult {
    int rank;
    @JsonProperty("used_scopes")
    List used_scopes;
    @JsonProperty("requested_scopes")
    List requested_scopes;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy