io.alapierre.ksef.fop.InvoiceGenerationParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ksef-fop Show documentation
Show all versions of ksef-fop Show documentation
Krajowy System eFaktur Generator PDF
package io.alapierre.ksef.fop;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.jetbrains.annotations.Nullable;
import java.time.LocalDate;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class InvoiceGenerationParams {
@Nullable
private String ksefNumber;
@Nullable private String verificationLink;
private byte[] qrCode;
private byte[] logo;
@Nullable
private LocalDate currencyDate;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy