io.kestra.plugin.airbyte.models.Attempt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-airbyte Show documentation
Show all versions of plugin-airbyte Show documentation
Seamlessly integrate Airbyte connectors into your Kestra workflows.
package io.kestra.plugin.airbyte.models;
import lombok.Value;
import lombok.experimental.SuperBuilder;
import lombok.extern.jackson.Jacksonized;
import java.time.Instant;
import java.util.List;
@Value
@Jacksonized
@SuperBuilder
public class Attempt {
Long id;
AttemptStatus status;
Instant createdAt;
Instant updatedAt;
Instant endedAt;
Long bytesSynced;
Long recordsSynced;
AttemptStats totalStats;
List streamStats;
AttemptFailureSummary failureSummary;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy