-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.go
More file actions
151 lines (101 loc) · 3.51 KB
/
constants.go
File metadata and controls
151 lines (101 loc) · 3.51 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package lever
// Default value for the Accept header.
const defaultAccept = mimeTypeApplicationJSON
// Lever data production base URL.
const defaultBaseURL = "https://api.lever.co/v1"
// Default value for the User-Agent header.
const defaultUserAgent = "lever-data-api-go/0.0.1"
// MIME type: application/json
const mimeTypeApplicationJSON = "application/json"
// MIME type: application/octet-stream
const mimeTypeApplicationOctetStream = "application/octet-stream"
// Header key: Accept
const headerAccept = "Accept"
// Header key: Authorization
const headerAuthorization = "Authorization"
// Header key: Content-Disposition
const headerContentDisposition = "Content-Disposition"
// Header key: Content-Type
const headerContentType = "Content-Type"
// Header key: User-Agent
const headerUserAgent = "User-Agent"
// Parameter key: accessRole
const paramAccessRole = "accessRole"
// Parameter key: advanced_at_end
const paramAdvancedAtEnd = "advanced_at_end"
// Parameter key: archived
const paramArchived = "archived"
// Parameter key: advanced_at_start
const paramAdvancedAtStart = "advanced_at_start"
// Parameter key: archived_at_end
const paramArchivedAtEnd = "archived_at_end"
// Parameter key: archived_at_start
const paramArchivedAtStart = "archived_at_start"
// Parameter key: archived_posting_id
const paramArchivedPostingID = "archived_posting_id"
// Parameter key: archive_reason_id
const paramArchiveReasonID = "archive_reason_id"
// Parameter key: cleanInterviews
const paramCleanInterviews = "cleanInterviews"
// Parameter key: confidentiality
const paramConfidentiality = "confidentiality"
// Parameter key: contact_id
const paramContactID = "contact_id"
// Parameter key: created_at_end
const paramCreatedAtEnd = "created_at_end"
// Parameter key: created_at_start
const paramCreatedAtStart = "created_at_start"
// Parameter key: deleted_at_end
const paramDeletedAtEnd = "deleted_at_end"
// Parameter key: deleted_at_start
const paramDeletedAtStart = "deleted_at_start"
// Parameter key: email
const paramEmail = "email"
// Parameter key: expand
const paramExpand = "expand"
// Parameter key: externalDirectoryId
const paramExternalDirectoryId = "external_directory_id"
// Parameter key: include
const paramInclude = "include"
// Parameter key: includeDeactivated
const paramIncludeDeactivated = "includeDeactivated"
// Parameter key: offset
const paramOffset = "offset"
// Parameter key: origin
const paramOrigin = "origin"
// Parameter key: parse
const paramParse = "parse"
// Parameter key: limit
const paramLimit = "limit"
// Parameter key: links
const paramLinks = "links"
// Parameter key: location
const paramLocation = "location"
// Parameter key: perform_as
const paramPerformAs = "perform_as"
// Parameter key: perform_as_posting_owner
const paramPerformAsPostingOwner = "perform_as_posting_owner"
// Parameter key: posting_id
const paramPostingID = "posting_id"
// Parameter key: reason
const paramReason = "reason"
// Parameter key: requisitionId
const paramRequisitionID = "requisitionId"
// Parameter key: source
const paramSource = "source"
// Parameter key: sources
const paramSources = "sources"
// Parameter key: snoozed
const paramSnoozed = "snoozed"
// Parameter key: stage
const paramStage = "stage"
// Parameter key: stage_id
const paramStageID = "stage_id"
// Parameter key: tag
const paramTag = "tag"
// Parameter key: tags
const paramTags = "tags"
// Parameter key: updated_at_end
const paramUpdatedAtEnd = "updated_at_end"
// Parameter key: updated_at_start
const paramUpdatedAtStart = "updated_at_start"