marquez.db.models.RunArgsRow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marquez-api Show documentation
Show all versions of marquez-api Show documentation
Collect, aggregate, and visualize a data ecosystem's metadata
/*
* Copyright 2018-2023 contributors to the Marquez project
* SPDX-License-Identifier: Apache-2.0
*/
package marquez.db.models;
import java.time.Instant;
import java.util.UUID;
import lombok.NonNull;
import lombok.Value;
@Value
public class RunArgsRow {
@NonNull UUID uuid;
@NonNull Instant createdAt;
@NonNull String args;
@NonNull String checksum;
}