Пример #1
0
 /// <summary>
 /// Initializes a new instance of the CustomObjectModel class.
 /// </summary>
 public CustomObjectModel(string value = default(string), CustomObjectModel inherited = default(CustomObjectModel), IList <CustomObjectModel> innerModels = default(IList <CustomObjectModel>), IDictionary <string, CustomObjectModel> keyedModels = default(IDictionary <string, CustomObjectModel>), SecondCustomObject secondObject = default(SecondCustomObject))
 {
     Value        = value;
     Inherited    = inherited;
     InnerModels  = innerModels;
     KeyedModels  = keyedModels;
     SecondObject = secondObject;
     CustomInit();
 }
Пример #2
0
        public async Task custombject_endpoints___post_custom_object_model_all_nulls()
        {
            using (var client = base.GetClient())
            {
                var body = new Models.CustomObjectModel
                {
                };

                var response = await client.PostCustomObjectDeepModelsAsync(
                    id : 1,
                    cancellationToken : default,
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the ThirdCustomObject class.
 /// </summary>
 public ThirdCustomObject(CustomObjectModel inherited = default(CustomObjectModel), IList <CustomObjectModel> innerModels = default(IList <CustomObjectModel>), IDictionary <string, CustomObjectModel> keyedModels = default(IDictionary <string, CustomObjectModel>), IDictionary <string, ThirdCustomObject> keyedThirdModels = default(IDictionary <string, ThirdCustomObject>), IDictionary <string, SecondCustomObject> keyedSecondModels = default(IDictionary <string, SecondCustomObject>), SecondCustomObject secondObject = default(SecondCustomObject), ThirdCustomObject thirdObject = default(ThirdCustomObject), CustomObjectIdModel idModel = default(CustomObjectIdModel), CustomObjectModel model = default(CustomObjectModel))
 {
     Inherited         = inherited;
     InnerModels       = innerModels;
     KeyedModels       = keyedModels;
     KeyedThirdModels  = keyedThirdModels;
     KeyedSecondModels = keyedSecondModels;
     SecondObject      = secondObject;
     ThirdObject       = thirdObject;
     IdModel           = idModel;
     Model             = model;
     CustomInit();
 }