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

com.affinda.api.client.models.InvoiceDataInvoiceNumber Maven / Gradle / Ivy

package com.affinda.api.client.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;

/** The InvoiceDataInvoiceNumber model. */
@Fluent
public final class InvoiceDataInvoiceNumber extends TextAnnotation {
    /*
     * The raw property.
     */
    @JsonProperty(value = "raw", required = true)
    private String raw;

    /*
     * The parsed property.
     */
    @JsonProperty(value = "parsed")
    private String parsed;

    /**
     * Get the raw property: The raw property.
     *
     * @return the raw value.
     */
    public String getRaw() {
        return this.raw;
    }

    /**
     * Set the raw property: The raw property.
     *
     * @param raw the raw value to set.
     * @return the InvoiceDataInvoiceNumber object itself.
     */
    public InvoiceDataInvoiceNumber setRaw(String raw) {
        this.raw = raw;
        return this;
    }

    /**
     * Get the parsed property: The parsed property.
     *
     * @return the parsed value.
     */
    public String getParsed() {
        return this.parsed;
    }

    /**
     * Set the parsed property: The parsed property.
     *
     * @param parsed the parsed value to set.
     * @return the InvoiceDataInvoiceNumber object itself.
     */
    public InvoiceDataInvoiceNumber setParsed(String parsed) {
        this.parsed = parsed;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy