Table of Contents

Class NiThresholdTypeJsonConverter

Namespace
Payetools.ReferenceData.Serialization
Assembly
Payetools.ReferenceData.dll

JSON Converter for instances of NiThresholdType types.

public class NiThresholdTypeJsonConverter : JsonConverter<NiThresholdType>
Inheritance
NiThresholdTypeJsonConverter
Inherited Members

Methods

Read(ref Utf8JsonReader, Type, JsonSerializerOptions)

Reads a National Insurance threshold element in string format and converts to the appropriate NiThresholdType value.

public override NiThresholdType Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)

Parameters

reader Utf8JsonReader

JSON reader (UTF-8 format).

typeToConvert Type

Type to convert (unused).

options JsonSerializerOptions

JSON serializer options (unused).

Returns

NiThresholdType

NiThresholdType value.

Write(Utf8JsonWriter, NiThresholdType, JsonSerializerOptions)

Writes a NiThresholdType value to the JSON stream in long form string format, e.g., "Lower Earnings Limit".

public override void Write(Utf8JsonWriter writer, NiThresholdType value, JsonSerializerOptions options)

Parameters

writer Utf8JsonWriter

JSON writer (UTF-8 format).

value NiThresholdType

NiThresholdType value to convert.

options JsonSerializerOptions

JSON serializer options (unused).