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

com.taboola.backstage.model.Patch Maven / Gradle / Ivy

package com.taboola.backstage.model;

import com.taboola.backstage.annotations.Required;

/**
 * Created by vladi.m
 * Date 2019-07-25
 * Time 16:27
 * Copyright Taboola
 */
public class Patch {

    @Required
    protected PatchOperation patchOperation;

    public PatchOperation getPatchOperation() {
        return patchOperation;
    }

    public void setPatchOperation(PatchOperation patchOperation) {
        this.patchOperation = patchOperation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy