Example #1
0
        public async Task CreateAsync()
        {
            var body = new ItemTypeRequest
            {
                TypeKey       = "JOB",
                Display       = "Job",
                DisplayPlural = "Jobs",
                Description   = "HR"
            };

            MetaResponse response = await _service.CreateAsync(body);

            Assert.IsNotNull(response);
        }