public response.ProfileJsonCheck check(response.ProfileJson profile_data, response.TrainingMetadatas training_metadata = null)
            {
                var bodyParams = new Dictionary <string, object>
                {
                    { "profile_json", profile_data },
                };

                RequestUtils.addIfNotNull(ref bodyParams, "training_metadata", training_metadata);

                var resp = _client.post <response.ProfileJsonCheck>("profile/json/check", args: bodyParams);

                return(resp.data);
            }
        public response.WebhookCheck check()
        {
            var resp = _client.post <response.WebhookCheck>("webhook/check");

            return(resp.data);
        }