crudModelNameGet
+ ++
/crud/{modelName}
+ +
Usage and SDK Samples
+ + + +curl -X GET\
+"//crud/{modelName}"
+ import io.swagger.client.*;
+import io.swagger.client.auth.*;
+import io.swagger.client.model.*;
+import io.swagger.client.api.DefaultApi;
+
+import java.io.File;
+import java.util.*;
+
+public class DefaultApiExample {
+
+ public static void main(String[] args) {
+
+ DefaultApi apiInstance = new DefaultApi();
+ modelName = ; // |
+ try {
+ apiInstance.crudModelNameGet(modelName);
+ } catch (ApiException e) {
+ System.err.println("Exception when calling DefaultApi#crudModelNameGet");
+ e.printStackTrace();
+ }
+ }
+}
+ import io.swagger.client.api.DefaultApi;
+
+public class DefaultApiExample {
+
+ public static void main(String[] args) {
+ DefaultApi apiInstance = new DefaultApi();
+ modelName = ; // |
+ try {
+ apiInstance.crudModelNameGet(modelName);
+ } catch (ApiException e) {
+ System.err.println("Exception when calling DefaultApi#crudModelNameGet");
+ e.printStackTrace();
+ }
+ }
+}
+ *modelName = ; //
+
+DefaultApi *apiInstance = [[DefaultApi alloc] init];
+
+[apiInstance crudModelNameGetWith:modelName
+ completionHandler: ^(NSError* error) {
+ if (error) {
+ NSLog(@"Error: %@", error);
+ }
+ }];
+
+ var UntitledApi = require('untitled_api');
+
+var api = new UntitledApi.DefaultApi()
+var modelName = ; // {{}}
+
+var callback = function(error, data, response) {
+ if (error) {
+ console.error(error);
+ } else {
+ console.log('API called successfully.');
+ }
+};
+api.crudModelNameGet(modelName, callback);
+
+ using System;
+using System.Diagnostics;
+using IO.Swagger.Api;
+using IO.Swagger.Client;
+using IO.Swagger.Model;
+
+namespace Example
+{
+ public class crudModelNameGetExample
+ {
+ public void main()
+ {
+
+ var apiInstance = new DefaultApi();
+ var modelName = new (); // |
+
+ try
+ {
+ apiInstance.crudModelNameGet(modelName);
+ }
+ catch (Exception e)
+ {
+ Debug.Print("Exception when calling DefaultApi.crudModelNameGet: " + e.Message );
+ }
+ }
+ }
+}
+
+ <?php
+require_once(__DIR__ . '/vendor/autoload.php');
+
+$api_instance = new Swagger\Client\ApiDefaultApi();
+$modelName = ; // |
+
+try {
+ $api_instance->crudModelNameGet($modelName);
+} catch (Exception $e) {
+ echo 'Exception when calling DefaultApi->crudModelNameGet: ', $e->getMessage(), PHP_EOL;
+}
+?>
+ use Data::Dumper;
+use WWW::SwaggerClient::Configuration;
+use WWW::SwaggerClient::DefaultApi;
+
+my $api_instance = WWW::SwaggerClient::DefaultApi->new();
+my $modelName = ; # |
+
+eval {
+ $api_instance->crudModelNameGet(modelName => $modelName);
+};
+if ($@) {
+ warn "Exception when calling DefaultApi->crudModelNameGet: $@\n";
+}
+ from __future__ import print_statement
+import time
+import swagger_client
+from swagger_client.rest import ApiException
+from pprint import pprint
+
+# create an instance of the API class
+api_instance = swagger_client.DefaultApi()
+modelName = # |
+
+try:
+ api_instance.crud_model_name_get(modelName)
+except ApiException as e:
+ print("Exception when calling DefaultApi->crudModelNameGet: %s\n" % e)
+ Parameters
+ +| Name | +Description | +
|---|---|
| modelName* | +
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Required
+
+ |
+