Record Class EbillConfiguration
java.lang.Object
java.lang.Record
ch.tocco.nice2.optional.einvoicing.api.EbillConfiguration
-
Constructor Summary
ConstructorsConstructorDescriptionEbillConfiguration
(String billerUniqueId, String pdfReportId, String xmlReportId, String processor) Creates an instance of aEbillConfiguration
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebillerUniqueId
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thepdfReportId
record component.Returns the value of theprocessor
record component.final String
toString()
Returns a string representation of this record class.Returns the value of thexmlReportId
record component.
-
Constructor Details
-
EbillConfiguration
public EbillConfiguration(String billerUniqueId, String pdfReportId, String xmlReportId, String processor) Creates an instance of aEbillConfiguration
record class.- Parameters:
billerUniqueId
- the value for thebillerUniqueId
record componentpdfReportId
- the value for thepdfReportId
record componentxmlReportId
- the value for thexmlReportId
record componentprocessor
- the value for theprocessor
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
billerUniqueId
Returns the value of thebillerUniqueId
record component.- Returns:
- the value of the
billerUniqueId
record component
-
pdfReportId
Returns the value of thepdfReportId
record component.- Returns:
- the value of the
pdfReportId
record component
-
xmlReportId
Returns the value of thexmlReportId
record component.- Returns:
- the value of the
xmlReportId
record component
-
processor
Returns the value of theprocessor
record component.- Returns:
- the value of the
processor
record component
-