io.kestra.plugin.powerbi.models.Refresh Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-powerbi Show documentation
Show all versions of plugin-powerbi Show documentation
Embed Power BI reports and dashboards within Kestra data workflows.
The newest version!
package io.kestra.plugin.powerbi.models;
import lombok.Getter;
import lombok.Value;
import lombok.extern.jackson.Jacksonized;
import java.time.Instant;
@Jacksonized
@Value
public class Refresh {
String requestId;
String id;
String refreshType;
Instant startTime;
String status;
}