Class PayRange
- Namespace
- Textkernel.Tx.Models.Job
- Assembly
- Textkernel.Tx.SDK.dll
An object containing details about a job position's pay.
public class PayRange
- Inheritance
-
PayRange
- Inherited Members
Properties
Currency
public string Currency { get; set; }
Property Value
Maximum
The normalized maximum yearly salary
public TxPrimitive<int> Maximum { get; set; }
Property Value
Minimum
The normalized minimum yearly salary
public TxPrimitive<int> Minimum { get; set; }
Property Value
RawMaximum
The raw, un-normalized, maximum value. This is returned as is in the text, so there is no guarantee that it will evaluate to a valid number and not a string.
public string RawMaximum { get; set; }
Property Value
RawMinimum
The raw, un-normalized, minimum value. This is returned as is in the text, so there is no guarantee that it will evaluate to a valid number and not a string.
public string RawMinimum { get; set; }
Property Value
TimeScale
Time scale applied to the raw values to get the minimum and maximum annual salary. Possible values are:
- Hourly
- Daily
- Weekly
- Monthly
- Annually
If no lexical cues are available from the job, the time scale is guessed based on predefined salary ranges.
Here are some rough salary ranges (note that country-specific conditions may apply):
- 1 or 2 digits salary (9, 12): hourly
- 3 or 4 digits salary (3800, 5000): monthly
- 5 digit salary (38000, 50000): yearly
If a monthly salary is extracted, to get the annual salary it is multiplied by 14 (if country = AT) or 12 (all other countries).
public string TimeScale { get; set; }