The Staffing REST APIs enable you to get and manage staffing information, such as jobs, job families, job profiles, supervisory organizations, worker check-ins, and job changes. The Staffing service also includes the /workers resource to access staffing information for non-terminated workers.
Related Information:
- Administrator Guide: Setup Considerations: Job Changes
Building the API client library requires:
- Java 1.8+
- Maven (3.8.3+)/Gradle (7.2+)
If you are adding this library to an Android Application or Library:
- Android 8.0+ (API Level 26+)
Add this dependency to your project's POM:
<dependency>
<groupId>com.konfigthis</groupId>
<artifactId>workday-staffing-java-sdk</artifactId>
<version>v6</version>
<scope>compile</scope>
</dependency>
Add this dependency to your build.gradle
:
// build.gradle
repositories {
mavenCentral()
}
dependencies {
implementation "com.konfigthis:workday-staffing-java-sdk:v6"
}
Make sure your build.gradle
file as a minSdk
version of at least 26:
// build.gradle
android {
defaultConfig {
minSdk 26
}
}
Also make sure your library or application has internet permissions in your AndroidManifest.xml
:
<!--AndroidManifest.xml-->
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
At first generate the JAR by executing:
mvn clean package
Then manually install the following JARs:
target/workday-staffing-java-sdk-v6.jar
target/lib/*.jar
Please follow the installation instruction and execute the following Java code:
import com.konfigthis.client.ApiClient;
import com.konfigthis.client.ApiException;
import com.konfigthis.client.ApiResponse;
import com.konfigthis.client.WorkdayStaffing;
import com.konfigthis.client.Configuration;
import com.konfigthis.client.model.*;
import com.konfigthis.client.api.PromptValuesApi;
import java.util.List;
import java.util.Map;
import java.util.UUID;
public class Example {
public static void main(String[] args) {
Configuration configuration = new Configuration();
configuration.host = "https://<tenantHostname>/staffing/v6";
WorkdayStaffing client = new WorkdayStaffing(configuration);
LocalDate effectiveDate = LocalDate.now();
String job = "job_example";
Long limit = 56L; // The maximum number of objects in a single response. The default and maximum is 1000.
String location = "location_example";
Long offset = 56L; // The zero-based index of the first object in a response collection. The default is 0. Use offset with the limit parameter to control paging of a response collection. Example: If limit is 5 and offset is 9, the response returns a collection of 5 objects starting with the 10th object.
List<String> proposedManager = Arrays.asList();
String staffingEvent = "staffingEvent_example";
String worker = "worker_example";
try {
MULTIPLEINSTANCEMODELREFERENCE result = client
.promptValues
.availableLocations()
.effectiveDate(effectiveDate)
.job(job)
.limit(limit)
.location(location)
.offset(offset)
.proposedManager(proposedManager)
.staffingEvent(staffingEvent)
.worker(worker)
.execute();
System.out.println(result);
System.out.println(result.getTotal());
System.out.println(result.getData());
} catch (ApiException e) {
System.err.println("Exception when calling PromptValuesApi#availableLocations");
System.err.println("Status code: " + e.getStatusCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
// Use .executeWithHttpInfo() to retrieve HTTP Status Code, Headers and Request
try {
ApiResponse<MULTIPLEINSTANCEMODELREFERENCE> response = client
.promptValues
.availableLocations()
.effectiveDate(effectiveDate)
.job(job)
.limit(limit)
.location(location)
.offset(offset)
.proposedManager(proposedManager)
.staffingEvent(staffingEvent)
.worker(worker)
.executeWithHttpInfo();
System.out.println(response.getResponseBody());
System.out.println(response.getResponseHeaders());
System.out.println(response.getStatusCode());
System.out.println(response.getRoundTripTime());
System.out.println(response.getRequest());
} catch (ApiException e) {
System.err.println("Exception when calling PromptValuesApi#availableLocations");
System.err.println("Status code: " + e.getStatusCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
All URIs are relative to https://<tenantHostname>/staffing/v6
Class | Method | HTTP request | Description |
---|---|---|---|
PromptValuesApi | availableLocations | GET /values/jobChangesGroup/locations | |
PromptValuesApi | getAssignmentChangeGroupCostCenters | GET /values/organizationAssignmentChangesGroup/costCenters | |
PromptValuesApi | getAssignmentTypes | GET /values/jobChangesGroup/assignmentTypes | |
PromptValuesApi | getCompanyInsiderTypes | GET /values/jobChangesGroup/companyInsiderTypes | |
PromptValuesApi | getContingentWorkerTypes | GET /values/jobChangesGroup/contingentWorkerTypes | |
PromptValuesApi | getCurrencyInstances | GET /values/jobChangesGroup/currencies | |
PromptValuesApi | getEmployeeTypes | GET /values/jobChangesGroup/employeeTypes | |
PromptValuesApi | getGiftInstances | GET /values/organizationAssignmentChangesGroup/gifts | |
PromptValuesApi | getGrants | GET /values/organizationAssignmentChangesGroup/grants | |
PromptValuesApi | getInstances | GET /values/organizationAssignmentChangesGroup/regions | |
PromptValuesApi | getInstances_0 | GET /values/jobChangesGroup/reason | |
PromptValuesApi | getInstances_1 | GET /values/organizationAssignmentChangesGroup/customs | |
PromptValuesApi | getInstances_10 | GET /values/jobChangesGroup/templates | |
PromptValuesApi | getInstances_11 | GET /values/jobChangesGroup/workers | |
PromptValuesApi | getInstances_12 | GET /values/jobChangesGroup/jobs | |
PromptValuesApi | getInstances_13 | GET /values/organizationAssignmentChangesGroup/workers | |
PromptValuesApi | getInstances_14 | GET /values/jobChangesGroup/workStudyAwards | |
PromptValuesApi | getInstances_15 | GET /values/organizationAssignmentChangesGroup/positions | |
PromptValuesApi | getInstances_16 | GET /values/jobChangesGroup/jobRequisitions | |
PromptValuesApi | getInstances_17 | GET /values/jobChangesGroup/jobProfiles | |
PromptValuesApi | getInstances_18 | GET /values/organizationAssignmentChangesGroup/companies | |
PromptValuesApi | getInstances_19 | GET /values/jobChangesGroup/jobClassifications | |
PromptValuesApi | getInstances_2 | GET /values/organizationAssignmentChangesGroup/programs | |
PromptValuesApi | getInstances_3 | GET /values/organizationAssignmentChangesGroup/jobs | |
PromptValuesApi | getInstances_4 | GET /values/organizationAssignmentChangesGroup/funds | |
PromptValuesApi | getInstances_5 | GET /values/jobChangesGroup/workersCompensationCodeOverrides | |
PromptValuesApi | getInstances_6 | GET /values/jobChangesGroup/workShifts | |
PromptValuesApi | getInstances_7 | GET /values/organizationAssignmentChangesGroup/businessUnits | |
PromptValuesApi | getInstances_8 | GET /values/jobChangesGroup/frequencies | |
PromptValuesApi | getInstances_9 | GET /values/jobChangesGroup/payRateTypes | |
PromptValuesApi | getOptions | GET /values/jobChangesGroup/headcountOptions | |
PromptValuesApi | getProposedPositions | GET /values/jobChangesGroup/proposedPosition | |
PromptValuesApi | getSupervisoryOrgValues | GET /values/jobChangesGroup/supervisoryOrganization | |
PromptValuesApi | getTimeTypes | GET /values/jobChangesGroup/timeTypes | |
PromptValuesApi | getWorkerTypes | GET /values/jobChangesGroup/workerTypes | |
PromptValuesApi | getWorkspaceInstances | GET /values/jobChangesGroup/workSpaces | |
JobChangesApi | getAdminOptions | GET /jobChanges/{ID}/administrative/{subresourceID} | Retrieves the administrative options for the specified job change ID. |
JobChangesApi | getAdministrativeOptions | GET /jobChanges/{ID}/administrative | Retrieves the administrative options for the specified job change ID. |
JobChangesApi | getBusinessTitle | GET /jobChanges/{ID}/businessTitle/{subresourceID} | Retrieves a business title for the specified job change ID. |
JobChangesApi | getBusinessTitle_0 | GET /jobChanges/{ID}/businessTitle | Retrieves a business title for the specified job change ID. |
JobChangesApi | getById | GET /jobChanges/{ID} | Retrieves a single change job event instance. |
JobChangesApi | getCommentById | GET /jobChanges/{ID}/comment | Returns the comment information for the specified job change ID. |
JobChangesApi | getCommentInfo | GET /jobChanges/{ID}/comment/{subresourceID} | Returns the comment information for the specified job change ID. |
JobChangesApi | getContractOptions | GET /jobChanges/{ID}/contract | Retrieves the contract options for the specified change job ID. |
JobChangesApi | getContractOptions_0 | GET /jobChanges/{ID}/contract/{subresourceID} | Retrieves the contract options for the specified change job ID. |
JobChangesApi | getJobClassification | GET /jobChanges/{ID}/jobClassification | Retrieves a job classification for the specified job change ID. |
JobChangesApi | getJobClassification_0 | GET /jobChanges/{ID}/jobClassification/{subresourceID} | Retrieves a job classification for the specified job change ID. |
JobChangesApi | getJobProfile | GET /jobChanges/{ID}/jobProfile | Retrieves a job profile for the specified job change ID. |
JobChangesApi | getLocationInfo | GET /jobChanges/{ID}/location | Returns the location information for the specified job change ID. |
JobChangesApi | getLocationInfo_0 | GET /jobChanges/{ID}/location/{subresourceID} | Returns the location information for the specified job change ID. |
JobChangesApi | getMoveTeamOption | GET /jobChanges/{ID}/moveTeam/{subresourceID} | Retrieves a move team option from the specified job change ID. |
JobChangesApi | getMoveTeamOption_0 | GET /jobChanges/{ID}/moveTeam | Retrieves a move team option from the specified job change ID. |
JobChangesApi | getOpeningOptions | GET /jobChanges/{ID}/opening | Retrieves the opening options for the specified job change ID. |
JobChangesApi | getOpeningOptions_0 | GET /jobChanges/{ID}/opening/{subresourceID} | Retrieves the opening options for the specified job change ID. |
JobChangesApi | getPositionById | GET /jobChanges/{ID}/position | Retrieves a position for the specified job change ID. |
JobChangesApi | getPositionBySubresourceId | GET /jobChanges/{ID}/position/{subresourceID} | Retrieves a position for the specified job change ID. |
JobChangesApi | getProfile | GET /jobChanges/{ID}/jobProfile/{subresourceID} | Retrieves a job profile for the specified job change ID. |
JobChangesApi | getStartDetails | GET /jobChanges/{ID}/startDetails/{subresourceID} | Retrieves the start details for the specified job change ID. |
JobChangesApi | getStartDetails_0 | GET /jobChanges/{ID}/startDetails | Retrieves the start details for the specified job change ID. |
JobChangesApi | partialUpdateLocationOptions | PATCH /jobChanges/{ID}/location/{subresourceID} | Partially updates the location options for the specified change job ID. |
JobChangesApi | partiallyUpdateContractOptions | PATCH /jobChanges/{ID}/contract/{subresourceID} | Partially updates the contract options for the specified change job ID. |
JobChangesApi | submitChangeJob | POST /jobChanges/{ID}/submit | Submit the specified change job ID. |
JobChangesApi | updateAdministrativeOptions | PATCH /jobChanges/{ID}/administrative/{subresourceID} | Partially updates the administrative options for the specified job change ID. |
JobChangesApi | updateBusinessTitleOptions | PATCH /jobChanges/{ID}/businessTitle/{subresourceID} | Partially updates the businessTitle options for the specified change job ID. |
JobChangesApi | updateComment | PATCH /jobChanges/{ID}/comment/{subresourceID} | Partially updates the comment for the specified change job ID. |
JobChangesApi | updateJobClassificationOptions | PATCH /jobChanges/{ID}/jobClassification/{subresourceID} | Partially updates the jobClassification options for the specified change job ID. |
JobChangesApi | updateJobProfileOptions | PATCH /jobChanges/{ID}/jobProfile/{subresourceID} | Partially updates the jobProfile options for the specified change job ID. |
JobChangesApi | updateMoveTeamOptions | PATCH /jobChanges/{ID}/moveTeam/{subresourceID} | Partially updates the moveTeam options for the specified change job ID. |
JobChangesApi | updateOpeningOptions | PATCH /jobChanges/{ID}/opening/{subresourceID} | Partially updates the opening options for the specified change job ID. |
JobChangesApi | updatePositionOptions | PATCH /jobChanges/{ID}/position/{subresourceID} | Partially updates the position options for the specified change job ID. |
JobChangesApi | updateStartDetails | PATCH /jobChanges/{ID}/startDetails/{subresourceID} | Partially updates the startDetails options for the specified change job ID. |
JobFamiliesApi | getById | GET /jobFamilies/{ID} | Retrieves a single job family instance. |
JobFamiliesApi | list | GET /jobFamilies | Retrieves a collection of job families. |
JobProfilesApi | getById | GET /jobProfiles/{ID} | Retrieves a single job profile instance. |
JobProfilesApi | listCollection | GET /jobProfiles | Retrieves a collection of job profiles. |
JobsApi | getCollection | GET /jobs | Retrieves a collection of jobs. |
JobsApi | getJobById | GET /jobs/{ID} | Retrieves a single job instance. |
JobsApi | getWorkspace | GET /jobs/{ID}/workspace/{subresourceID} | Retrieves a single workspace instance. |
JobsApi | getWorkspaces | GET /jobs/{ID}/workspace | Retrieves a collection of workspaces for the specified job ID. |
OrganizationAssignmentChangesApi | createChangeEvent | POST /organizationAssignmentChanges | Creates a new change organization assignment event for a specific filled or unfilled position. |
OrganizationAssignmentChangesApi | getBusinessUnit | GET /organizationAssignmentChanges/{ID}/businessUnit/{subresourceID} | Retrieves a business unit for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getBusinessUnit_0 | GET /organizationAssignmentChanges/{ID}/businessUnit | Retrieves a business unit for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getComment | GET /organizationAssignmentChanges/{ID}/comment | Retrieves the comment information for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getCommentInfo | GET /organizationAssignmentChanges/{ID}/comment/{subresourceID} | Retrieves the comment information for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getCompany | GET /organizationAssignmentChanges/{ID}/company | Retrieves a company for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getCompanyById | GET /organizationAssignmentChanges/{ID}/company/{subresourceID} | Retrieves a company for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getCostCenter | GET /organizationAssignmentChanges/{ID}/costCenter/{subresourceID} | Retrieves a cost center for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getCostCenter_0 | GET /organizationAssignmentChanges/{ID}/costCenter | Retrieves a cost center for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getCostingOrganizations | GET /organizationAssignmentChanges/{ID}/costing/{subresourceID} | Retrieves the costing organizations for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getCostingOrganizations_0 | GET /organizationAssignmentChanges/{ID}/costing | Retrieves the costing organizations for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getCustomOrganizations | GET /organizationAssignmentChanges/{ID}/customOrganizations/{subresourceID} | Retrieves the custom organizations for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getCustomOrganizations_0 | GET /organizationAssignmentChanges/{ID}/customOrganizations | Retrieves the custom organizations for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getInstance | GET /organizationAssignmentChanges/{ID} | Retrieves a single organization assignment change event instance. |
OrganizationAssignmentChangesApi | getRegion | GET /organizationAssignmentChanges/{ID}/region | Retrieves a region for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getRegionById | GET /organizationAssignmentChanges/{ID}/region/{subresourceID} | Retrieves a region for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getStartDetails | GET /organizationAssignmentChanges/{ID}/startDetails/{subresourceID} | Retrieves the start details for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | getStartDetails_0 | GET /organizationAssignmentChanges/{ID}/startDetails | Retrieves the start details for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | partiallyUpdateCompany | PATCH /organizationAssignmentChanges/{ID}/company/{subresourceID} | Partially updates the company for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | partiallyUpdateCostingOptions | PATCH /organizationAssignmentChanges/{ID}/costing/{subresourceID} | Partially updates the costing organization options for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | partiallyUpdateStartDetails | PATCH /organizationAssignmentChanges/{ID}/startDetails/{subresourceID} | Partially updates the start details for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | submitChangeRequest | POST /organizationAssignmentChanges/{ID}/submit | Submits the organization changes request for the specified ID, and initiates the Change Organization Assignment business process. |
OrganizationAssignmentChangesApi | updateBusinessUnit | PATCH /organizationAssignmentChanges/{ID}/businessUnit/{subresourceID} | Partially updates the business unit for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | updateComment | PATCH /organizationAssignmentChanges/{ID}/comment/{subresourceID} | Partially updates the comment for the organization assignment change ID. |
OrganizationAssignmentChangesApi | updateCostCenter | PATCH /organizationAssignmentChanges/{ID}/costCenter/{subresourceID} | Partially updates the cost center for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | updateCustomOrganizations | PATCH /organizationAssignmentChanges/{ID}/customOrganizations/{subresourceID} | Partially updates the custom organizations for the specified organization assignment change ID. |
OrganizationAssignmentChangesApi | updateRegion | PATCH /organizationAssignmentChanges/{ID}/region/{subresourceID} | Partially updates the region for the specified organization assignment change ID. |
SupervisoryOrganizationsApi | getById | GET /supervisoryOrganizations | Retrieves a supervisory organization for the specified ID. |
SupervisoryOrganizationsApi | getInstance | GET /supervisoryOrganizations/{ID} | Retrieves a single supervisory organization instance. |
SupervisoryOrganizationsApi | getMember | GET /supervisoryOrganizations/{ID}/members/{subresourceID} | Retrieves a single member instance. |
SupervisoryOrganizationsApi | getMembers | GET /supervisoryOrganizations/{ID}/members | Retrieves a collection of members for the specified supervisory organization ID. |
SupervisoryOrganizationsApi | getOrgChart | GET /supervisoryOrganizations/{ID}/orgChart | Retrieves information about an organization chart of the specified supervisory organization id. |
SupervisoryOrganizationsApi | getOrgChart_0 | GET /supervisoryOrganizations/{ID}/orgChart/{subresourceID} | Retrieves a single organization chart instance. |
WorkersApi | createCheckIn | POST /workers/{ID}/checkIns | Creates Check-Ins. |
WorkersApi | createCheckInTopic | POST /workers/{ID}/checkInTopics | Creates Check-In topics. |
WorkersApi | createExternalSkillLevels | POST /workers/{ID}/externalSkillLevel | Creates external skill levels. |
WorkersApi | createHomeContactChangeProcess | POST /workers/{ID}/homeContactInformationChanges | |
WorkersApi | createSkillItem | POST /workers/{ID}/skillItems | |
WorkersApi | createWorkContactInformationChanges | POST /workers/{ID}/workContactInformationChanges | |
WorkersApi | deleteCheckIn | DELETE /workers/{ID}/checkIns/{subresourceID} | Deletes an existing Check-In instance. |
WorkersApi | deleteCheckInTopic | DELETE /workers/{ID}/checkInTopics/{subresourceID} | Deletes an existing Check-In topic instance. |
WorkersApi | getCheckIn | GET /workers/{ID}/checkIns/{subresourceID} | Retrieves a single Check-In instance. |
WorkersApi | getCheckInTopic | GET /workers/{ID}/checkInTopics/{subresourceID} | Retrieves a single Check-In topic instance. |
WorkersApi | getCheckInTopics | GET /workers/{ID}/checkInTopics | Retrieves a collection of Check-Ins topics. |
WorkersApi | getCheckIns | GET /workers/{ID}/checkIns | Retrieves a collection of Check-Ins. |
WorkersApi | getCollectionStaffing | GET /workers | Retrieves a collection of workers and current staffing information. |
WorkersApi | getExplicitSkills | GET /workers/{ID}/explicitSkills | Get Explicit Skills for Skill Enabled |
WorkersApi | getExplicitSkillsForSkillEnabled | GET /workers/{ID}/explicitSkills/{subresourceID} | Get Explicit Skills for Skill Enabled |
WorkersApi | getExternalSkillLevel | GET /workers/{ID}/externalSkillLevel | Retrieves all external skill level information for a worker. You can filter the external skill levels by externalSkillId. |
WorkersApi | getExternalSkillLevels | GET /workers/{ID}/externalSkillLevel/{subresourceID} | Retrieves all external skill level information for a worker. You can filter the external skill levels by externalSkillId. |
WorkersApi | getHomeContactChange | GET /workers/{ID}/homeContactInformationChanges/{subresourceID} | Retrieves an existing Home Contact Change event for the Person. |
WorkersApi | getServiceDate | GET /workers/{ID}/serviceDates/{subresourceID} | Retrieves a single service date information instance. |
WorkersApi | getServiceDates | GET /workers/{ID}/serviceDates | Retrieves a collection of service dates for the specified worker id. |
WorkersApi | getSkillItems | GET /workers/{ID}/skillItems | |
WorkersApi | getSkillItemsById | GET /workers/{ID}/skillItems/{subresourceID} | |
WorkersApi | getStaffingInformation | GET /workers/{ID} | Retrieves a collection of workers and current staffing information. |
WorkersApi | getWorkContactChange | GET /workers/{ID}/workContactInformationChanges/{subresourceID} | Retrieves an existing Work Contact Change event for the Person. |
WorkersApi | initiateJobChange | POST /workers/{ID}/jobChanges | Initiates a job change request for a specific worker |
WorkersApi | initiateOrganizationAssignmentChange | POST /workers/{ID}/organizationAssignmentChanges | Initiates an organization assignment change for a specific worker. |
WorkersApi | partiallyUpdateCheckIn | PATCH /workers/{ID}/checkIns/{subresourceID}?type=archive | Partially updates an existing Check-In to archived or un-archived. |
WorkersApi | partiallyUpdateCheckInTopic | PATCH /workers/{ID}/checkInTopics/{subresourceID} | Partially updates an existing Check-In topic instance. |
WorkersApi | saveUserSkills | POST /workers/{ID}/explicitSkills | Save skills a user has |
WorkersApi | updateCheckIn | PATCH /workers/{ID}/checkIns/{subresourceID} | Partially updates an existing Check-In instance. |
WorkersApi | updateCheckInTopicState | PATCH /workers/{ID}/checkInTopics/{subresourceID}?type=archive | Partially updates an existing Check-In topic to archived or un-archived. |
WorkersApi | updateExternalSkillLevel | PUT /workers/{ID}/externalSkillLevel/{subresourceID} | Updates external skill levels. |
- Action38ff08ab6736100010816009079d0126
- AssignmentType23929e1f68ca10000d6940d6bde56963
- AssociatedCheckInDetail3267c0ba92a0100016ed105476ad03c4
- AssociatedCheckInTopicDetail316b5a26cc3c100010a01184c23902ea
- AssociatedCheckInTopicDetail316b5a26cc3c100010a01184c23902eaAllOf
- AssociatedCheckInsSummaryD81c816de26f10000f7a29ea89140020
- AssociatedCheckInsSummaryD81c816de26f10000f7a29ea89140020AllOf
- AssociatedTopicsSummaryB3a69f47a4991000171aae4c5a810040
- AssociatedTopicsSummaryB3a69f47a4991000171aae4c5a810040AllOf
- BusinessProcessParameters23782ad3f54110002073aab65def00fb
- BusinessProcessParameters2dcd9a4882b210000f7b2e0a85982265
- BusinessProcessParameters2dcd9a4882b210000f7b2e0a85982265AllOf
- BusinessProcessParameters5afc0b4b5a4610002aaebb8180cd2261
- BusinessUnit5aabf8e28cb310002520b2aabc470366
- Category43b30ba735b8100011ee4781a9d50146
- ChangeJobAdditionalJobClassificationData27ec818d10d0100003600115b5200102
- ChangeJobAdditionalJobClassificationData27ec818d10d0100003600115b5200102AllOf
- ChangeJobAdministrativeDetailsDataF8f20079bc5a1000089ccb7f6a8800ea
- ChangeJobAdministrativeDetailsDataF8f20079bc5a1000089ccb7f6a8800eaAllOf
- ChangeJobBusinessTitle3db8095ffa18100013a5f96969ca0102
- ChangeJobBusinessTitle3db8095ffa18100013a5f96969ca0102AllOf
- ChangeJobCompanyInsiderTypesData05d4c45042b61000131e4b2132f30137
- ChangeJobCompanyInsiderTypesData05d4c45042b61000131e4b2132f30137AllOf
- ChangeJobContractDetailsData27ec818d10d010000386ce823ac20107
- ChangeJobContractDetailsData27ec818d10d010000386ce823ac20107AllOf
- ChangeJobDefaultRepresentation6cc31ee444d010000bb4153a954300e7
- ChangeJobDefaultRepresentation6cc31ee444d010000bb4153a954300e7AllOf
- ChangeJobJobClassificationData354103f196361000084489bcb281017f
- ChangeJobJobClassificationData354103f196361000084489bcb281017fAllOf
- ChangeJobJobProfileData3db8095ffa18100013f019a27a1f0115
- ChangeJobJobProfileData3db8095ffa18100013f019a27a1f0115AllOf
- ChangeJobLocation90151d6c4ff110001b4a46091678025c
- ChangeJobLocation90151d6c4ff110001b4a46091678025cAllOf
- ChangeJobMoveTeamData544fdf5c01da1000238ad82d26d90146
- ChangeJobMoveTeamData544fdf5c01da1000238ad82d26d90146AllOf
- ChangeJobOpeningData97af9049a5fd10001c4888d654170000
- ChangeJobOpeningData97af9049a5fd10001c4888d654170000AllOf
- ChangeJobPositionDataDfc4e58f7308100018bd1c459f435221
- ChangeJobPositionDataDfc4e58f7308100018bd1c459f435221AllOf
- ChangeOrganizationAssignmentDefaultRepresentationDb2f38bfb555100012de1eb17c2f00ff
- ChangeOrganizationAssignmentDefaultRepresentationDb2f38bfb555100012de1eb17c2f00ffAllOf
- CheckInArchiveDetail1163fe23102e10001df342088f8a018e
- CheckInArchiveDetail1163fe23102e10001df342088f8a018eAllOf
- CheckInAttachmentDetailEf244acfe6cf10002ebe92d43a7701d7
- CheckInAttachmentDetailEf244acfe6cf10002ebe92d43a7701d7AllOf
- CheckInDetail316b5a26cc3c10000ebdb0cb484602e1
- CheckInDetail316b5a26cc3c10000ebdb0cb484602e1AllOf
- CheckInTopicArchiveDetail1163fe23102e10001f72d77b213401a2
- CheckInTopicArchiveDetail1163fe23102e10001f72d77b213401a2AllOf
- CheckInTopicAttachmentDetail600ecde4c8421000278d06bfacea01c1
- CheckInTopicAttachmentDetail600ecde4c8421000278d06bfacea01c1AllOf
- CheckInTopicDetail3267c0ba92a010001688d79b032b03b8
- CheckInTopicDetail3267c0ba92a010001688d79b032b03b8AllOf
- CheckInTopicsSummaryD81c816de26f10000ef2c5cb2fdd0015
- CheckInTopicsSummaryD81c816de26f10000ef2c5cb2fdd0015AllOf
- CheckInsSummaryB3a69f47a499100010ce6be72bfe001d
- CheckInsSummaryB3a69f47a499100010ce6be72bfe001dAllOf
- Comments7d98fd55aeee100022968e52a1b31c60
- Comments7d98fd55aeee100022968e52a1b31c60AllOf
- Comments86093b8a932f10001499f356ff83012e
- Comments86093b8a932f10001499f356ff83012eAllOf
- Company56fe0dd0eca1100019cfe097d26a03f2
- CompanyInsiderTypeRelatedView7deab99f645f10001000f8a388740081
- CompanyInsiderTypeRelatedView7deab99f645f10001000f8a388740081AllOf
- ContentType43b30ba735b8100011ee47993f11014a
- ContentType600ecde4c842100027eaa21d044e01cf
- ContentTypeEf244acfe6cf10002ebe92e7001601d8
- CostCenter5aabf8e28cb3100010a999f40b07024f
- Country3b00708994e4100004edeb4e0d37128c
- Country3b00708994e41000095e4647007012bc
- CountryAf21e47ff7c01000092ecf4d7ad30270
- CountryDataForLocationDataAf21e47ff7c01000092e0e4f9a22026e
- CountryDataForLocationDataAf21e47ff7c01000092e0e4f9a22026eAllOf
- CountryOrRegion3b00708994e4100007848bc917a112a6
- CountryOrRegionRelatedView3b00708994e4100007e9c8f14e3812ae
- CountryOrRegionRelatedView3b00708994e4100007e9c8f14e3812aeAllOf
- CountryRelatedView7deab99f645f10000cf305c30e260054
- CountryRelatedView7deab99f645f10000cf305c30e260054AllOf
- CreateSkillUsageRepresentation98f198f5056b1000196313ffe9a0225e
- CreateSkillUsageRepresentation98f198f5056b1000196313ffe9a0225eAllOf
- CreatorB3a69f47a49910001687de28dd71003d
- CreatorD81c816de26f10000f521459ac80001d
- Currency2d0ca2cb2448100009c54386a8570e07
- CustomOrganizationDetails3950e273020a100017857926d35d369c
- CustomOrganizationDetails3950e273020a100017857926d35d369cAllOf
- DifficultyToFill89a0b59e7cce1000074acb57c0c50162
- DifficultyToFillRelatedView3b00708994e41000032f4de84695004c
- DifficultyToFillRelatedView3b00708994e41000032f4de84695004cAllOf
- DisplayExplicitSkillRepresentationD6ca778018011000182fa5be1ae901a8
- DisplayExplicitSkillRepresentationD6ca778018011000182fa5be1ae901a8AllOf
- ERRORMODELREFERENCE
- EventAttachmentsForToolbar43b30ba735b8100011ee4767246d0143
- EventAttachmentsForToolbar43b30ba735b8100011ee4767246d0143AllOf
- EventState54e611eca2c910000fbc4579181c0111
- EventState54e611eca2c910000fbc4579181c0111AllOf
- EventStateOrganizationAssignmentF3e1ff305e2d100003327f7b7fa103f1
- EventStateOrganizationAssignmentF3e1ff305e2d100003327f7b7fa103f1AllOf
- ExternalSkillLevelA39462f09c44100005d46fd77ef00000
- ExternalSkillLevelA39462f09c44100005d46fd77ef00000AllOf
- ExternalSkillLevelDetail1c67ac98c0f310002706be33dcdb0000
- ExternalSkillLevelDetail1c67ac98c0f310002706be33dcdb0000AllOf
- FACETSMODELREFERENCEInner
- FACETSMODELREFERENCEInnerValuesInner
- For5d688bd57bb910001815ab3dd10024a9
- Frequency2d0ca2cb2448100009c5436d5d670e06
- FundA18edb56aca0100014a4a0b27352045c
- GiftA18edb56aca0100014a4a0a9f876045b
- GrantA18edb56aca0100014a4a0bcf25c045e
- HeadcountOption97af9049a5fd10001c48896fbde30000
- HomeContactChangeEventF42ba27d87ed10001aa58a5d231b1621
- HomeContactChangeEventF42ba27d87ed10001aa58a5d231b1621AllOf
- INSTANCEMODELREFERENCE
- Job35b8f199c29410002508ffd7ad6101f3
- Job75e528a78e9a10000ab7512c5c550115
- JobCategory89a0b59e7cce1000074acb471919015f
- JobCategoryRelatedView7deab99f645f10000f8582dc572d0075
- JobCategoryRelatedView7deab99f645f10000f8582dc572d0075AllOf
- JobChangesGetAdministrativeOptionsResponse
- JobChangesGetBusinessTitleResponse
- JobChangesGetCommentByIdResponse
- JobChangesGetContractOptionsResponse
- JobChangesGetJobClassificationResponse
- JobChangesGetJobProfileResponse
- JobChangesGetLocationInfoResponse
- JobChangesGetMoveTeamOptionResponse
- JobChangesGetOpeningOptionsResponse
- JobChangesGetPositionByIdResponse
- JobChangesGetStartDetailsResponse
- JobChangesStartDetailsDataCe861a6a360d10002d40f176b7180020
- JobChangesStartDetailsDataCe861a6a360d10002d40f176b7180020AllOf
- JobChangesStartDetailsPOSTData75e528a78e9a10000ab750ea156f0111
- JobChangesStartDetailsPOSTData75e528a78e9a10000ab750ea156f0111AllOf
- JobData1bfa8925c50510000ae4479925510026
- JobData1bfa8925c50510000ae4479925510026AllOf
- JobDataForWorkerB8ac205877fd10000ea91719a02a00a2
- JobDataForWorkerB8ac205877fd10000ea91719a02a00a2AllOf
- JobFamiliesListResponse
- JobFamilyGroup51ed1475e9e6100006229cfe817b0014
- JobFamilyGroupView7164d34509ba10000b8610c566ea002d
- JobFamilyGroupView7164d34509ba10000b8610c566ea002dAllOf
- JobFamilyRelatedView3b00708994e410000e0e2540529b12d6
- JobFamilyRelatedView3b00708994e410000e0e2540529b12d6AllOf
- JobFamilyView51ed1475e9e6100005d10fcedc5a000a
- JobFamilyView51ed1475e9e6100005d10fcedc5a000aAllOf
- JobLevel89a0b59e7cce1000074acb3c1e8e015d
- JobLevelRelatedView7deab99f645f10000f06cbbf927a0069
- JobLevelRelatedView7deab99f645f10000f06cbbf927a0069AllOf
- JobProfile3db8095ffa18100013f019afc6d30116
- JobProfile6fb921f8a11d10001d5268980bbb0097
- JobProfileB8ac205877fd10000ea9174f73c500aa
- JobProfileDetailView7deab99f645f10000bd5e61a1b780041
- JobProfileDetailView7deab99f645f10000bd5e61a1b780041AllOf
- JobProfileExemptRelatedView3b00708994e41000076da515387812a2
- JobProfileExemptRelatedView3b00708994e41000076da515387812a2AllOf
- JobProfileJobViewFab4a151b24810000d511d61ee641262
- JobProfileJobViewFab4a151b24810000d511d61ee641262AllOf
- JobProfilePayRateTypeRelatedView3b00708994e4100008d4b09e903f12b5
- JobProfilePayRateTypeRelatedView3b00708994e4100008d4b09e903f12b5AllOf
- JobProfileSummaryView7deab99f645f10000b5152ce2d700034
- JobProfileSummaryView7deab99f645f10000b5152ce2d700034AllOf
- JobProfileView51ed1475e9e6100006c698ef68480017
- JobProfileView51ed1475e9e6100006c698ef68480017AllOf
- JobProfilesListCollectionResponse
- JobRequisitionDfc4e58f730810001ad60325d9bc52cf
- JobTypeB8ac205877fd100005c55b45c6400057
- JobTypeB8ac205877fd10000ea91752f39c00ab
- JobTypeDataB8ac205877fd100005c3b50b74a30055
- JobTypeDataB8ac205877fd100005c3b50b74a30055AllOf
- JobWorkspaceData1005157e3d631000144205466a6c13d3
- JobWorkspaceData1005157e3d631000144205466a6c13d3AllOf
- JobsGetCollectionResponse
- JobsGetWorkspacesResponse
- Location6d3eb084b4c410002b617efb943f0059
- Location6da81665c26510001fc6b1d42fae5f7b
- Location75e528a78e9a10000ab75125ebe50114
- Location90151d6c4ff110001bfa027116820278
- LocationB8ac205877fd10000ea91737c7da00a5
- LocationDataJobView6d3eb084b4c410002b5fa13f0c9d0056
- LocationDataJobView6d3eb084b4c410002b5fa13f0c9d0056AllOf
- MULTIPLEINSTANCEMODELREFERENCE
- ManagementLevel89a0b59e7cce1000074acb1d768e0158
- ManagementLevelRelatedView7deab99f645f10000d69adf2c932005c
- ManagementLevelRelatedView7deab99f645f10000d69adf2c932005cAllOf
- ManagerWorkerViewA02c2e1916fa10000cbb84be81ce0027
- ManagerWorkerViewA02c2e1916fa10000cbb84be81ce0027AllOf
- MassActionHeaderCf97466f96d910002bd32afbf0000001
- MassActionWorksheet31485c9a93c0100007276cf4e5640000
- OrgChartView643e3a12629710000554e0338e670044
- OrgChartView643e3a12629710000554e0338e670044AllOf
- OrganizationAssignmentChangesBusinessUnitData5aabf8e28cb310002520b2a2b31d0365
- OrganizationAssignmentChangesBusinessUnitData5aabf8e28cb310002520b2a2b31d0365AllOf
- OrganizationAssignmentChangesCompanyData652d516fdff41000086e0b9c96950354
- OrganizationAssignmentChangesCompanyData652d516fdff41000086e0b9c96950354AllOf
- OrganizationAssignmentChangesCostCenterData5aabf8e28cb3100010a999db2700024e
- OrganizationAssignmentChangesCostCenterData5aabf8e28cb3100010a999db2700024eAllOf
- OrganizationAssignmentChangesCostingDataA18edb56aca0100014a4a09dc57e045a
- OrganizationAssignmentChangesCostingDataA18edb56aca0100014a4a09dc57e045aAllOf
- OrganizationAssignmentChangesCustomOrganizationDetailsData53cd2b632146100011e9bf4e7041551f
- OrganizationAssignmentChangesCustomOrganizationDetailsData53cd2b632146100011e9bf4e7041551fAllOf
- OrganizationAssignmentChangesGetBusinessUnitResponse
- OrganizationAssignmentChangesGetCommentResponse
- OrganizationAssignmentChangesGetCompanyResponse
- OrganizationAssignmentChangesGetCostCenterResponse
- OrganizationAssignmentChangesGetCostingOrganizationsResponse
- OrganizationAssignmentChangesGetCustomOrganizationsResponse
- OrganizationAssignmentChangesGetRegionResponse
- OrganizationAssignmentChangesGetStartDetailsResponse
- OrganizationAssignmentChangesPostCc45d62b623c1000132ac812c30a052e
- OrganizationAssignmentChangesPostCc45d62b623c1000132ac812c30a052eAllOf
- OrganizationAssignmentChangesPostPositionCf97466f96d9100029bffcf91c120000
- OrganizationAssignmentChangesPostPositionCf97466f96d9100029bffcf91c120000AllOf
- OrganizationAssignmentChangesRegionDataA18edb56aca0100006997e68e5780373
- OrganizationAssignmentChangesRegionDataA18edb56aca0100006997e68e5780373AllOf
- OrganizationAssignmentChangesStartDetailsData90009f2bfc49100017b10cd07d19063b
- OrganizationAssignmentChangesStartDetailsData90009f2bfc49100017b10cd07d19063bAllOf
- OrganizationType3950e273020a100017857958e234369d
- OverallBusinessProcess5d688bd57bb910001815ab49927724aa
- ParticipantB3a69f47a49910001687de1d4c75003c
- ParticipantD81c816de26f10000f52144d053f001b
- PayRateType3b00708994e410000c3d01aea96012c1
- PayRateTypeD25283821c01100016756a14eb650000
- PayRateTypeRelatedView3b00708994e410000c52776049ba12c3
- PayRateTypeRelatedView3b00708994e410000c52776049ba12c3AllOf
- Person0ad147648b0a1000237bd486634a001a
- Person86093b8a932f10001499f38c72410130
- PersonDataViewBe343791f59d100028d6a277ca8a0017
- PersonDataViewBe343791f59d100028d6a277ca8a0017AllOf
- Position827372de4457100019c0e9c5977d0000
- Position99f6257185e61000043aadd66df203bb
- PositionCf97466f96d9100029bffcf91c120001
- PositionDfc4e58f730810001ad60369c23452d1
- PositionWorkerType05d4c45042b610001030ee47f2c90118
- PrimaryJob352c3a97ecd51000353cba144c5b0042
- ProgramA18edb56aca0100014a4a0b7ddf7045d
- PurchaseOrder2d0ca2cb2448100009c5433bcff60e05
- Reason6da81665c26510001f34d0a154765e9b
- Reason85deac43cd1a10000b96c80c118f171e
- RegionA18edb56aca0100006997ec7e07d0374
- RegionRelatedView3b00708994e41000053151ffd9e31293
- RegionRelatedView3b00708994e41000053151ffd9e31293AllOf
- ServiceDatesData6b1db753fd82100027b0c8519c860018
- ServiceDatesData6b1db753fd82100027b0c8519c860018AllOf
- SkillItem4b4b7d34b4a210001c7927f9e1330080
- SkillItem98f198f5056b100019631445471d225f
- SkillItemAddDefinitionFaed9891d75a10001e9a289910540228
- SkillItemAddDefinitionFaed9891d75a10001e9a289910540228AllOf
- SkillItemAddRepresentationC5fabc4ca81610000eaeb4ff2f000137
- SkillItemAddRepresentationC5fabc4ca81610000eaeb4ff2f000137AllOf
- SkillItemD6ca778018011000182fa5f3b32001aa
- SkillItemDisplayDefinition4b4b7d34b4a21000301eaf52086700d8
- SkillItemDisplayDefinition4b4b7d34b4a21000301eaf52086700d8AllOf
- SkillItemSourceAddRepresentationC5fabc4ca81610000d5d15309ac90122
- SkillItemSourceAddRepresentationC5fabc4ca81610000d5d15309ac90122AllOf
- SkillItemsBulkDefinition9d815bbfd67010000d6ed56204ab12de
- SkillItemsBulkDefinition9d815bbfd67010000d6ed56204ab12deAllOf
- SkillSourceC5fabc4ca81610000d5d154e6e3c0123
- SkillSourceRepresentation998d2cc58f2f10000db59b08da0306a8
- SkillSourceRepresentation998d2cc58f2f10000db59b08da0306a8AllOf
- Status54e611eca2c910000fbc4599be0b0112
- Superior643e3a1262971000145238b2ccd10059
- SupervisoryOrganization75e528a78e9a10000ab75132a9df0116
- SupervisoryOrganization827372de445710001cfe36968a480000
- SupervisoryOrganizationB8ac205877fd10000ea91743659800a7
- SupervisoryOrganizationE3267ea37e6f100032c00c34a99e74d8
- SupervisoryOrganizationFab4a151b24810000d13073c5d341257
- SupervisoryOrganizationJobViewFab4a151b24810000d29746fb7e21259
- SupervisoryOrganizationJobViewFab4a151b24810000d29746fb7e21259AllOf
- SupervisoryOrganizationViewA02c2e1916fa100009e137235f1f0018
- SupervisoryOrganizationViewA02c2e1916fa100009e137235f1f0018AllOf
- SupervisoryOrganizationsGetByIdResponse
- SupervisoryOrganizationsGetMembersResponse
- SupervisoryOrganizationsGetOrgChartResponse
- Template2b1b95dfe4af100007f63081aec5158e
- Template2b1b95dfe4af100009f30dc769a31686
- TimeType05d4c45042b610000bb540b7458e0108
- TransactionStatus7457adcbe0fa1000089b63ab3a510000
- UploadedByB32ff437243510000e22e06470370160
- VALIDATIONERRORMODELREFERENCE
- VALIDATIONERRORMODELREFERENCEAllOf
- WorkContactChangeEvent5fca6c96c1c81000142fd03784140113
- WorkContactChangeEvent5fca6c96c1c81000142fd03784140113AllOf
- WorkShift0ee7bb8b41db1000143d4e4822174f2e
- WorkSpace0ee7bb8b41db10001e7db6a6c3e55663
- WorkSpace426ac445037110001b3eb91ddf6f0100
- WorkStudy05d4c45042b610000ba2f83c70f30101
- Worker271bbd673582100010110b9f9a6d99e1
- Worker90009f2bfc4910001b166d44a72c0727
- WorkerDataC2466b0778c610000d1936006720000e
- WorkerDataC2466b0778c610000d1936006720000eAllOf
- WorkerFab4a151b24810000e66f769304c126b
- WorkerJobViewFab4a151b24810000e7ff8d0c7f0126d
- WorkerJobViewFab4a151b24810000e7ff8d0c7f0126dAllOf
- WorkerType3f78eeedc01d1000138d97d80e5a0000
- WorkersCompensationCodeOverride05d4c45042b61000138500e185e0013f
- WorkersCompensationCodeRelatedView3b00708994e4100004af13d958811287
- WorkersCompensationCodeRelatedView3b00708994e4100004af13d958811287AllOf
- WorkersGetCheckInTopicsResponse
- WorkersGetCheckInsResponse
- WorkersGetCollectionStaffingResponse
- WorkersGetExplicitSkillsResponse
- WorkersGetExternalSkillLevelResponse
- WorkersGetServiceDatesResponse
- WorkersGetSkillItemsResponse
This Java package is automatically generated by Konfig