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

io.permit.sdk.api.models.CreateOrUpdateResult Maven / Gradle / Ivy

There is a newer version: 983f46e
Show newest version
package io.permit.sdk.api.models;

public class CreateOrUpdateResult {
    private final T object;
    private final boolean created;
    public CreateOrUpdateResult(T object, boolean created) {
        this.object = object;
        this.created = created;
    }

    public T getResult() {
        return this.object;
    }

    public boolean wasCreated() {
        return this.created;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy