InsuranceInfo
This object contains the header information for the E-Insurance Commission Expense Document. Details regarding this object are described below.
public class InsuranceInfoDto
{
public Guid UUID { get; set; }
public Guid TemplateUUID { get; set; }
public string TemplateBase64String { get; set; }
public string InsuranceSerieOrNumber { get; set; }
public DateTime IssueDate { get; set; }
public string CurrencyCode { get; set; }
public decimal? ExchangeRate { get; set; }
public InvoicePeriodDto InvoicePeriod { get; set; }
}UUID
GUID is a unique number used to track documents of the specified data type.
Insurance.InsuranceInfo.UUID = 'b8787efb-639d-4efc-85b5-953bf1dbaac0';TemplateUUID
This field is used for the UUID of the XSLT file to be added to the document. The XSLT file corresponding to this UUID is added to the document.
TemplateBase64String
The Base64 version of the design to be included in the document is added here.
InsuranceSerieOrNumber
In this field, you can enter the 16-digit e-Insurance Commission Expense Document number and the 3-digit serial number. If you enter the 16-digit document number, no action will be taken; the value you entered will be used as the document number. If you enter the 3-digit serial number, a number will be generated from that serial number defined on the portal.
IssueDate
The document date and time are entered in this field.
CurrencyCode
This field is where the document's currency is entered. Possible values are listed under Currency Codes in the code lists section.
ExchangeRate
This field is where the exchange rate is entered if the document is issued in a currency other than Turkish Lira. The exchange rate information will be displayed on the document.
InvoicePeriod
This is the area where the 'Period Start and End Dates' of the document will be entered.
Last updated