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

com.yahoo.elide.test.jsonapi.elements.Attribute Maven / Gradle / Ivy

/*
 * Copyright 2019, Yahoo Inc.
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root for terms.
 */
package com.yahoo.elide.test.jsonapi.elements;

import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * The type Attribute.
 */
@AllArgsConstructor
public class Attribute {
    /**
     * The Key.
     */
    @Getter
    final String key;
    /**
     * The Value.
     */
    @Getter
    final Object value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy