C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
YELTLossSet.DataType.cs
Go to the documentation of this file.
1using System;
2
3namespace AnalyzeRe.LossSets
4{
7 public partial class YELTLossSet
8 {
10 [Obsolete("The binary YELT format and related options will be deprecated in the near future." +
11 "We encourage you to upload your YELT data as human-readable CSV. You can do this by " +
12 "simply not setting the data_type attribute at all before uploading CSV data.")]
13 public enum DataType
14 {
16 csv,
18 [Obsolete("The binary YELT format and related options will be deprecated in the near future." +
19 "We encourage you to upload your YELT data as human-readable CSV. You can do this by " +
20 "simply not setting the data_type attribute at all before uploading CSV data.")]
21 binary,
22 }
23 }
24}
DataType
The format of the data uploaded against this YELT.
@ csv
The file is in a text/csv format.
@ binary
The file is in a binary format.