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

com.yahoo.elide.swagger.models.media.AtomicOperations Maven / Gradle / Ivy

There is a newer version: 7.1.2
Show newest version
/*
 * Copyright 2024, the original author or authors.
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root for terms.
 */
package com.yahoo.elide.swagger.models.media;

import io.swagger.v3.oas.models.media.ArraySchema;
import io.swagger.v3.oas.models.media.ObjectSchema;

/**
 * Atomic operations.
 */
public class AtomicOperations extends ObjectSchema {
    public AtomicOperations() {
        ArraySchema atomicOperations = new ArraySchema();
        atomicOperations.items(new AtomicOperation());
        this.addProperty("atomic:operations", atomicOperations);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy