|
16 | 16 |
|
17 | 17 | __version__ = "1.0.0"
|
18 | 18 |
|
| 19 | +# Define package exports |
| 20 | +__all__ = [ |
| 21 | + "AnotherFakeApi", |
| 22 | + "DefaultApi", |
| 23 | + "FakeApi", |
| 24 | + "FakeClassnameTags123Api", |
| 25 | + "ImportTestDatetimeApi", |
| 26 | + "PetApi", |
| 27 | + "StoreApi", |
| 28 | + "UserApi", |
| 29 | + "ApiResponse", |
| 30 | + "ApiClient", |
| 31 | + "Configuration", |
| 32 | + "OpenApiException", |
| 33 | + "ApiTypeError", |
| 34 | + "ApiValueError", |
| 35 | + "ApiKeyError", |
| 36 | + "ApiAttributeError", |
| 37 | + "ApiException", |
| 38 | + "HttpSigningConfiguration", |
| 39 | + "AdditionalPropertiesAnyType", |
| 40 | + "AdditionalPropertiesClass", |
| 41 | + "AdditionalPropertiesObject", |
| 42 | + "AdditionalPropertiesWithDescriptionOnly", |
| 43 | + "AllOfSuperModel", |
| 44 | + "AllOfWithSingleRef", |
| 45 | + "Animal", |
| 46 | + "AnyOfColor", |
| 47 | + "AnyOfPig", |
| 48 | + "ArrayOfArrayOfModel", |
| 49 | + "ArrayOfArrayOfNumberOnly", |
| 50 | + "ArrayOfNumberOnly", |
| 51 | + "ArrayTest", |
| 52 | + "BaseDiscriminator", |
| 53 | + "BasquePig", |
| 54 | + "Bathing", |
| 55 | + "Capitalization", |
| 56 | + "Cat", |
| 57 | + "Category", |
| 58 | + "CircularAllOfRef", |
| 59 | + "CircularReferenceModel", |
| 60 | + "ClassModel", |
| 61 | + "Client", |
| 62 | + "Color", |
| 63 | + "Creature", |
| 64 | + "CreatureInfo", |
| 65 | + "DanishPig", |
| 66 | + "DeprecatedObject", |
| 67 | + "DiscriminatorAllOfSub", |
| 68 | + "DiscriminatorAllOfSuper", |
| 69 | + "Dog", |
| 70 | + "DummyModel", |
| 71 | + "EnumArrays", |
| 72 | + "EnumClass", |
| 73 | + "EnumNumberVendorExt", |
| 74 | + "EnumString1", |
| 75 | + "EnumString2", |
| 76 | + "EnumStringVendorExt", |
| 77 | + "EnumTest", |
| 78 | + "Feeding", |
| 79 | + "File", |
| 80 | + "FileSchemaTestClass", |
| 81 | + "FirstRef", |
| 82 | + "Foo", |
| 83 | + "FooGetDefaultResponse", |
| 84 | + "FormatTest", |
| 85 | + "HasOnlyReadOnly", |
| 86 | + "HealthCheckResult", |
| 87 | + "HuntingDog", |
| 88 | + "Info", |
| 89 | + "InnerDictWithProperty", |
| 90 | + "InputAllOf", |
| 91 | + "IntOrString", |
| 92 | + "ListClass", |
| 93 | + "MapOfArrayOfModel", |
| 94 | + "MapTest", |
| 95 | + "MixedPropertiesAndAdditionalPropertiesClass", |
| 96 | + "Model200Response", |
| 97 | + "ModelApiResponse", |
| 98 | + "ModelField", |
| 99 | + "ModelReturn", |
| 100 | + "MultiArrays", |
| 101 | + "Name", |
| 102 | + "NullableClass", |
| 103 | + "NullableProperty", |
| 104 | + "NumberOnly", |
| 105 | + "ObjectToTestAdditionalProperties", |
| 106 | + "ObjectWithDeprecatedFields", |
| 107 | + "OneOfEnumString", |
| 108 | + "Order", |
| 109 | + "OuterComposite", |
| 110 | + "OuterEnum", |
| 111 | + "OuterEnumDefaultValue", |
| 112 | + "OuterEnumInteger", |
| 113 | + "OuterEnumIntegerDefaultValue", |
| 114 | + "OuterObjectWithEnumProperty", |
| 115 | + "Parent", |
| 116 | + "ParentWithOptionalDict", |
| 117 | + "Pet", |
| 118 | + "Pig", |
| 119 | + "PoopCleaning", |
| 120 | + "PrimitiveString", |
| 121 | + "PropertyMap", |
| 122 | + "PropertyNameCollision", |
| 123 | + "ReadOnlyFirst", |
| 124 | + "SecondCircularAllOfRef", |
| 125 | + "SecondRef", |
| 126 | + "SelfReferenceModel", |
| 127 | + "SingleRefType", |
| 128 | + "SpecialCharacterEnum", |
| 129 | + "SpecialModelName", |
| 130 | + "SpecialName", |
| 131 | + "Tag", |
| 132 | + "Task", |
| 133 | + "TaskActivity", |
| 134 | + "TestEnum", |
| 135 | + "TestEnumWithDefault", |
| 136 | + "TestErrorResponsesWithModel400Response", |
| 137 | + "TestErrorResponsesWithModel404Response", |
| 138 | + "TestInlineFreeformAdditionalPropertiesRequest", |
| 139 | + "TestModelWithEnumDefault", |
| 140 | + "TestObjectForMultipartRequestsRequestMarker", |
| 141 | + "Tiger", |
| 142 | + "UnnamedDictWithAdditionalModelListProperties", |
| 143 | + "UnnamedDictWithAdditionalStringListProperties", |
| 144 | + "UploadFileWithAdditionalPropertiesRequestObject", |
| 145 | + "User", |
| 146 | + "WithNestedOneOf", |
| 147 | +] |
| 148 | + |
19 | 149 | # import apis into sdk package
|
20 | 150 | from petstore_api.api.another_fake_api import AnotherFakeApi
|
21 | 151 | from petstore_api.api.default_api import DefaultApi
|
|
0 commit comments