io.kestra.plugin.hightouch.models.RunDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-hightouch Show documentation
Show all versions of plugin-hightouch Show documentation
Plugin Hightouch for Kestra
package io.kestra.plugin.hightouch.models;
import lombok.Value;
import lombok.experimental.SuperBuilder;
import lombok.extern.jackson.Jacksonized;
import java.time.Instant;
@Value
@Jacksonized
@SuperBuilder
public class RunDetails {
Long id;
ModifiedRows plannedRows;
ModifiedRows successfulRows;
ModifiedRows failedRows;
Long querySize;
RunStatus status;
Instant createdAt;
Instant startedAt;
Instant finishedAt;
Long completionRatio;
String error;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy