-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathApplicationDetails.cs
55 lines (46 loc) · 1.9 KB
/
ApplicationDetails.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright © 2023 Textkernel BV. All rights reserved.
// This file is provided for use by, or on behalf of, Textkernel licensees
// within the terms of their license of Textkernel products or Textkernel customers
// within the Terms of Service pertaining to the Textkernel SaaS products.
using System;
namespace Textkernel.Tx.Models.Job
{
/// <summary>
/// An object containing details about the application process
/// </summary>
public class ApplicationDetails
{
/// <summary>
/// Full text description of the application process
/// </summary>
public string ApplicationDescription { get; set; }
/// <summary>
/// Full name of the main contact person for the application
/// </summary>
public string ContactPerson { get; set; }
/// <summary>
/// Normalized phone of the organization with international calling prefix. Can contain multiple values (concatenated by comma)
/// </summary>
public string ContactPhone { get; set; }
/// <summary>
/// Displayable email of the organization. Can contain multiple values (concatenated by comma)
/// </summary>
public string ContactEmail { get; set; }
/// <summary>
/// Validated and normalized displayable website of the organization. Can contain multiple values (concatenated by comma)
/// </summary>
public string Website { get; set; }
/// <summary>
/// Deadline to apply for the job
/// </summary>
public TxPrimitive<DateTime> ApplicationDeadline { get; set; }
/// <summary>
/// Date the job was posted
/// </summary>
public TxPrimitive<DateTime> PostedDate { get; set; }
/// <summary>
/// Any reference number found for the job application
/// </summary>
public string ReferenceNumber { get; set; }
}
}