All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.alapierre.ksef.fop.InvoiceGenerationParams Maven / Gradle / Ivy

There is a newer version: 1.0.15
Show newest version
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