mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 12:40:53 +00:00
[Python] Add __all__ variable in the package __init__.py file for Python APIs (#21185)
* Add __all__ to the package __init__.py file for Python APIs * Remove empty line before closing bracket * Add missing samples
This commit is contained in:
parent
3048fb02e1
commit
f2813716fb
@ -6,6 +6,23 @@
|
||||
|
||||
__version__ = "{{packageVersion}}"
|
||||
|
||||
# Define package exports
|
||||
__all__ = [
|
||||
{{#apiInfo}}{{#apis}}"{{classname}}",
|
||||
{{/apis}}{{/apiInfo}}"ApiResponse",
|
||||
"ApiClient",
|
||||
"Configuration",
|
||||
"OpenApiException",
|
||||
"ApiTypeError",
|
||||
"ApiValueError",
|
||||
"ApiKeyError",
|
||||
"ApiAttributeError",
|
||||
"ApiException",
|
||||
{{#hasHttpSignatureMethods}}"HttpSigningConfiguration",
|
||||
{{/hasHttpSignatureMethods}}{{#models}}{{#model}}"{{classname}}"{{^-last}},
|
||||
{{/-last}}{{#-last}},{{/-last}}{{/model}}{{/models}}
|
||||
]
|
||||
|
||||
# import apis into sdk package
|
||||
{{#apiInfo}}{{#apis}}from {{apiPackage}}.{{classFilename}} import {{classname}}
|
||||
{{/apis}}{{/apiInfo}}
|
||||
|
@ -6,6 +6,23 @@
|
||||
|
||||
__version__ = "{{packageVersion}}"
|
||||
|
||||
# Define package exports
|
||||
__all__ = [
|
||||
{{#apiInfo}}{{#apis}}"{{classname}}",
|
||||
{{/apis}}{{/apiInfo}}"ApiResponse",
|
||||
"ApiClient",
|
||||
"Configuration",
|
||||
"OpenApiException",
|
||||
"ApiTypeError",
|
||||
"ApiValueError",
|
||||
"ApiKeyError",
|
||||
"ApiAttributeError",
|
||||
"ApiException",
|
||||
{{#hasHttpSignatureMethods}}"HttpSigningConfiguration",
|
||||
{{/hasHttpSignatureMethods}}{{#models}}{{#model}}"{{classname}}"{{^-last}},
|
||||
{{/-last}}{{#-last}},{{/-last}}{{/model}}{{/models}}
|
||||
]
|
||||
|
||||
# import apis into sdk package
|
||||
{{#apiInfo}}{{#apis}}from {{apiPackage}}.{{classFilename}} import {{classname}}
|
||||
{{/apis}}{{/apiInfo}}
|
||||
|
@ -17,6 +17,37 @@
|
||||
|
||||
__version__ = "1.0.0"
|
||||
|
||||
# Define package exports
|
||||
__all__ = [
|
||||
"AuthApi",
|
||||
"BodyApi",
|
||||
"FormApi",
|
||||
"HeaderApi",
|
||||
"PathApi",
|
||||
"QueryApi",
|
||||
"ApiResponse",
|
||||
"ApiClient",
|
||||
"Configuration",
|
||||
"OpenApiException",
|
||||
"ApiTypeError",
|
||||
"ApiValueError",
|
||||
"ApiKeyError",
|
||||
"ApiAttributeError",
|
||||
"ApiException",
|
||||
"Bird",
|
||||
"Category",
|
||||
"DataQuery",
|
||||
"DefaultValue",
|
||||
"NumberPropertiesOnly",
|
||||
"Pet",
|
||||
"Query",
|
||||
"StringEnumRef",
|
||||
"Tag",
|
||||
"TestFormObjectMultipartRequestMarker",
|
||||
"TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter",
|
||||
"TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter",
|
||||
]
|
||||
|
||||
# import apis into sdk package
|
||||
from openapi_client.api.auth_api import AuthApi
|
||||
from openapi_client.api.body_api import BodyApi
|
||||
|
@ -17,6 +17,37 @@
|
||||
|
||||
__version__ = "1.0.0"
|
||||
|
||||
# Define package exports
|
||||
__all__ = [
|
||||
"AuthApi",
|
||||
"BodyApi",
|
||||
"FormApi",
|
||||
"HeaderApi",
|
||||
"PathApi",
|
||||
"QueryApi",
|
||||
"ApiResponse",
|
||||
"ApiClient",
|
||||
"Configuration",
|
||||
"OpenApiException",
|
||||
"ApiTypeError",
|
||||
"ApiValueError",
|
||||
"ApiKeyError",
|
||||
"ApiAttributeError",
|
||||
"ApiException",
|
||||
"Bird",
|
||||
"Category",
|
||||
"DataQuery",
|
||||
"DefaultValue",
|
||||
"NumberPropertiesOnly",
|
||||
"Pet",
|
||||
"Query",
|
||||
"StringEnumRef",
|
||||
"Tag",
|
||||
"TestFormObjectMultipartRequestMarker",
|
||||
"TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter",
|
||||
"TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter",
|
||||
]
|
||||
|
||||
# import apis into sdk package
|
||||
from openapi_client.api.auth_api import AuthApi
|
||||
from openapi_client.api.body_api import BodyApi
|
||||
|
@ -17,6 +17,37 @@
|
||||
|
||||
__version__ = "1.0.0"
|
||||
|
||||
# Define package exports
|
||||
__all__ = [
|
||||
"AuthApi",
|
||||
"BodyApi",
|
||||
"FormApi",
|
||||
"HeaderApi",
|
||||
"PathApi",
|
||||
"QueryApi",
|
||||
"ApiResponse",
|
||||
"ApiClient",
|
||||
"Configuration",
|
||||
"OpenApiException",
|
||||
"ApiTypeError",
|
||||
"ApiValueError",
|
||||
"ApiKeyError",
|
||||
"ApiAttributeError",
|
||||
"ApiException",
|
||||
"Bird",
|
||||
"Category",
|
||||
"DataQuery",
|
||||
"DefaultValue",
|
||||
"NumberPropertiesOnly",
|
||||
"Pet",
|
||||
"Query",
|
||||
"StringEnumRef",
|
||||
"Tag",
|
||||
"TestFormObjectMultipartRequestMarker",
|
||||
"TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter",
|
||||
"TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter",
|
||||
]
|
||||
|
||||
# import apis into sdk package
|
||||
from openapi_client.api.auth_api import AuthApi
|
||||
from openapi_client.api.body_api import BodyApi
|
||||
|
@ -16,6 +16,136 @@
|
||||
|
||||
__version__ = "1.0.0"
|
||||
|
||||
# Define package exports
|
||||
__all__ = [
|
||||
"AnotherFakeApi",
|
||||
"DefaultApi",
|
||||
"FakeApi",
|
||||
"FakeClassnameTags123Api",
|
||||
"ImportTestDatetimeApi",
|
||||
"PetApi",
|
||||
"StoreApi",
|
||||
"UserApi",
|
||||
"ApiResponse",
|
||||
"ApiClient",
|
||||
"Configuration",
|
||||
"OpenApiException",
|
||||
"ApiTypeError",
|
||||
"ApiValueError",
|
||||
"ApiKeyError",
|
||||
"ApiAttributeError",
|
||||
"ApiException",
|
||||
"HttpSigningConfiguration",
|
||||
"AdditionalPropertiesAnyType",
|
||||
"AdditionalPropertiesClass",
|
||||
"AdditionalPropertiesObject",
|
||||
"AdditionalPropertiesWithDescriptionOnly",
|
||||
"AllOfSuperModel",
|
||||
"AllOfWithSingleRef",
|
||||
"Animal",
|
||||
"AnyOfColor",
|
||||
"AnyOfPig",
|
||||
"ArrayOfArrayOfModel",
|
||||
"ArrayOfArrayOfNumberOnly",
|
||||
"ArrayOfNumberOnly",
|
||||
"ArrayTest",
|
||||
"BaseDiscriminator",
|
||||
"BasquePig",
|
||||
"Bathing",
|
||||
"Capitalization",
|
||||
"Cat",
|
||||
"Category",
|
||||
"CircularAllOfRef",
|
||||
"CircularReferenceModel",
|
||||
"ClassModel",
|
||||
"Client",
|
||||
"Color",
|
||||
"Creature",
|
||||
"CreatureInfo",
|
||||
"DanishPig",
|
||||
"DeprecatedObject",
|
||||
"DiscriminatorAllOfSub",
|
||||
"DiscriminatorAllOfSuper",
|
||||
"Dog",
|
||||
"DummyModel",
|
||||
"EnumArrays",
|
||||
"EnumClass",
|
||||
"EnumNumberVendorExt",
|
||||
"EnumString1",
|
||||
"EnumString2",
|
||||
"EnumStringVendorExt",
|
||||
"EnumTest",
|
||||
"Feeding",
|
||||
"File",
|
||||
"FileSchemaTestClass",
|
||||
"FirstRef",
|
||||
"Foo",
|
||||
"FooGetDefaultResponse",
|
||||
"FormatTest",
|
||||
"HasOnlyReadOnly",
|
||||
"HealthCheckResult",
|
||||
"HuntingDog",
|
||||
"Info",
|
||||
"InnerDictWithProperty",
|
||||
"InputAllOf",
|
||||
"IntOrString",
|
||||
"ListClass",
|
||||
"MapOfArrayOfModel",
|
||||
"MapTest",
|
||||
"MixedPropertiesAndAdditionalPropertiesClass",
|
||||
"Model200Response",
|
||||
"ModelApiResponse",
|
||||
"ModelField",
|
||||
"ModelReturn",
|
||||
"MultiArrays",
|
||||
"Name",
|
||||
"NullableClass",
|
||||
"NullableProperty",
|
||||
"NumberOnly",
|
||||
"ObjectToTestAdditionalProperties",
|
||||
"ObjectWithDeprecatedFields",
|
||||
"OneOfEnumString",
|
||||
"Order",
|
||||
"OuterComposite",
|
||||
"OuterEnum",
|
||||
"OuterEnumDefaultValue",
|
||||
"OuterEnumInteger",
|
||||
"OuterEnumIntegerDefaultValue",
|
||||
"OuterObjectWithEnumProperty",
|
||||
"Parent",
|
||||
"ParentWithOptionalDict",
|
||||
"Pet",
|
||||
"Pig",
|
||||
"PoopCleaning",
|
||||
"PrimitiveString",
|
||||
"PropertyMap",
|
||||
"PropertyNameCollision",
|
||||
"ReadOnlyFirst",
|
||||
"SecondCircularAllOfRef",
|
||||
"SecondRef",
|
||||
"SelfReferenceModel",
|
||||
"SingleRefType",
|
||||
"SpecialCharacterEnum",
|
||||
"SpecialModelName",
|
||||
"SpecialName",
|
||||
"Tag",
|
||||
"Task",
|
||||
"TaskActivity",
|
||||
"TestEnum",
|
||||
"TestEnumWithDefault",
|
||||
"TestErrorResponsesWithModel400Response",
|
||||
"TestErrorResponsesWithModel404Response",
|
||||
"TestInlineFreeformAdditionalPropertiesRequest",
|
||||
"TestModelWithEnumDefault",
|
||||
"TestObjectForMultipartRequestsRequestMarker",
|
||||
"Tiger",
|
||||
"UnnamedDictWithAdditionalModelListProperties",
|
||||
"UnnamedDictWithAdditionalStringListProperties",
|
||||
"UploadFileWithAdditionalPropertiesRequestObject",
|
||||
"User",
|
||||
"WithNestedOneOf",
|
||||
]
|
||||
|
||||
# import apis into sdk package
|
||||
from petstore_api.api.another_fake_api import AnotherFakeApi
|
||||
from petstore_api.api.default_api import DefaultApi
|
||||
|
@ -16,6 +16,136 @@
|
||||
|
||||
__version__ = "1.0.0"
|
||||
|
||||
# Define package exports
|
||||
__all__ = [
|
||||
"AnotherFakeApi",
|
||||
"DefaultApi",
|
||||
"FakeApi",
|
||||
"FakeClassnameTags123Api",
|
||||
"ImportTestDatetimeApi",
|
||||
"PetApi",
|
||||
"StoreApi",
|
||||
"UserApi",
|
||||
"ApiResponse",
|
||||
"ApiClient",
|
||||
"Configuration",
|
||||
"OpenApiException",
|
||||
"ApiTypeError",
|
||||
"ApiValueError",
|
||||
"ApiKeyError",
|
||||
"ApiAttributeError",
|
||||
"ApiException",
|
||||
"HttpSigningConfiguration",
|
||||
"AdditionalPropertiesAnyType",
|
||||
"AdditionalPropertiesClass",
|
||||
"AdditionalPropertiesObject",
|
||||
"AdditionalPropertiesWithDescriptionOnly",
|
||||
"AllOfSuperModel",
|
||||
"AllOfWithSingleRef",
|
||||
"Animal",
|
||||
"AnyOfColor",
|
||||
"AnyOfPig",
|
||||
"ApiResponse",
|
||||
"ArrayOfArrayOfModel",
|
||||
"ArrayOfArrayOfNumberOnly",
|
||||
"ArrayOfNumberOnly",
|
||||
"ArrayTest",
|
||||
"BaseDiscriminator",
|
||||
"BasquePig",
|
||||
"Bathing",
|
||||
"Capitalization",
|
||||
"Cat",
|
||||
"Category",
|
||||
"CircularAllOfRef",
|
||||
"CircularReferenceModel",
|
||||
"ClassModel",
|
||||
"Client",
|
||||
"Color",
|
||||
"Creature",
|
||||
"CreatureInfo",
|
||||
"DanishPig",
|
||||
"DeprecatedObject",
|
||||
"DiscriminatorAllOfSub",
|
||||
"DiscriminatorAllOfSuper",
|
||||
"Dog",
|
||||
"DummyModel",
|
||||
"EnumArrays",
|
||||
"EnumClass",
|
||||
"EnumNumberVendorExt",
|
||||
"EnumString1",
|
||||
"EnumString2",
|
||||
"EnumStringVendorExt",
|
||||
"EnumTest",
|
||||
"Feeding",
|
||||
"Field",
|
||||
"File",
|
||||
"FileSchemaTestClass",
|
||||
"FirstRef",
|
||||
"Foo",
|
||||
"FooGetDefaultResponse",
|
||||
"FormatTest",
|
||||
"HasOnlyReadOnly",
|
||||
"HealthCheckResult",
|
||||
"HuntingDog",
|
||||
"Info",
|
||||
"InnerDictWithProperty",
|
||||
"InputAllOf",
|
||||
"IntOrString",
|
||||
"ListClass",
|
||||
"MapOfArrayOfModel",
|
||||
"MapTest",
|
||||
"MixedPropertiesAndAdditionalPropertiesClass",
|
||||
"Model200Response",
|
||||
"ModelReturn",
|
||||
"MultiArrays",
|
||||
"Name",
|
||||
"NullableClass",
|
||||
"NullableProperty",
|
||||
"NumberOnly",
|
||||
"ObjectToTestAdditionalProperties",
|
||||
"ObjectWithDeprecatedFields",
|
||||
"OneOfEnumString",
|
||||
"Order",
|
||||
"OuterComposite",
|
||||
"OuterEnum",
|
||||
"OuterEnumDefaultValue",
|
||||
"OuterEnumInteger",
|
||||
"OuterEnumIntegerDefaultValue",
|
||||
"OuterObjectWithEnumProperty",
|
||||
"Parent",
|
||||
"ParentWithOptionalDict",
|
||||
"Pet",
|
||||
"Pig",
|
||||
"PoopCleaning",
|
||||
"PrimitiveString",
|
||||
"PropertyMap",
|
||||
"PropertyNameCollision",
|
||||
"ReadOnlyFirst",
|
||||
"SecondCircularAllOfRef",
|
||||
"SecondRef",
|
||||
"SelfReferenceModel",
|
||||
"SingleRefType",
|
||||
"SpecialCharacterEnum",
|
||||
"SpecialModelName",
|
||||
"SpecialName",
|
||||
"Tag",
|
||||
"Task",
|
||||
"TaskActivity",
|
||||
"TestEnum",
|
||||
"TestEnumWithDefault",
|
||||
"TestErrorResponsesWithModel400Response",
|
||||
"TestErrorResponsesWithModel404Response",
|
||||
"TestInlineFreeformAdditionalPropertiesRequest",
|
||||
"TestModelWithEnumDefault",
|
||||
"TestObjectForMultipartRequestsRequestMarker",
|
||||
"Tiger",
|
||||
"UnnamedDictWithAdditionalModelListProperties",
|
||||
"UnnamedDictWithAdditionalStringListProperties",
|
||||
"UploadFileWithAdditionalPropertiesRequestObject",
|
||||
"User",
|
||||
"WithNestedOneOf",
|
||||
]
|
||||
|
||||
# import apis into sdk package
|
||||
from petstore_api.api.another_fake_api import AnotherFakeApi
|
||||
from petstore_api.api.default_api import DefaultApi
|
||||
|
@ -16,6 +16,136 @@
|
||||
|
||||
__version__ = "1.0.0"
|
||||
|
||||
# Define package exports
|
||||
__all__ = [
|
||||
"AnotherFakeApi",
|
||||
"DefaultApi",
|
||||
"FakeApi",
|
||||
"FakeClassnameTags123Api",
|
||||
"ImportTestDatetimeApi",
|
||||
"PetApi",
|
||||
"StoreApi",
|
||||
"UserApi",
|
||||
"ApiResponse",
|
||||
"ApiClient",
|
||||
"Configuration",
|
||||
"OpenApiException",
|
||||
"ApiTypeError",
|
||||
"ApiValueError",
|
||||
"ApiKeyError",
|
||||
"ApiAttributeError",
|
||||
"ApiException",
|
||||
"HttpSigningConfiguration",
|
||||
"AdditionalPropertiesAnyType",
|
||||
"AdditionalPropertiesClass",
|
||||
"AdditionalPropertiesObject",
|
||||
"AdditionalPropertiesWithDescriptionOnly",
|
||||
"AllOfSuperModel",
|
||||
"AllOfWithSingleRef",
|
||||
"Animal",
|
||||
"AnyOfColor",
|
||||
"AnyOfPig",
|
||||
"ApiResponse",
|
||||
"ArrayOfArrayOfModel",
|
||||
"ArrayOfArrayOfNumberOnly",
|
||||
"ArrayOfNumberOnly",
|
||||
"ArrayTest",
|
||||
"BaseDiscriminator",
|
||||
"BasquePig",
|
||||
"Bathing",
|
||||
"Capitalization",
|
||||
"Cat",
|
||||
"Category",
|
||||
"CircularAllOfRef",
|
||||
"CircularReferenceModel",
|
||||
"ClassModel",
|
||||
"Client",
|
||||
"Color",
|
||||
"Creature",
|
||||
"CreatureInfo",
|
||||
"DanishPig",
|
||||
"DeprecatedObject",
|
||||
"DiscriminatorAllOfSub",
|
||||
"DiscriminatorAllOfSuper",
|
||||
"Dog",
|
||||
"DummyModel",
|
||||
"EnumArrays",
|
||||
"EnumClass",
|
||||
"EnumNumberVendorExt",
|
||||
"EnumString1",
|
||||
"EnumString2",
|
||||
"EnumStringVendorExt",
|
||||
"EnumTest",
|
||||
"Feeding",
|
||||
"Field",
|
||||
"File",
|
||||
"FileSchemaTestClass",
|
||||
"FirstRef",
|
||||
"Foo",
|
||||
"FooGetDefaultResponse",
|
||||
"FormatTest",
|
||||
"HasOnlyReadOnly",
|
||||
"HealthCheckResult",
|
||||
"HuntingDog",
|
||||
"Info",
|
||||
"InnerDictWithProperty",
|
||||
"InputAllOf",
|
||||
"IntOrString",
|
||||
"ListClass",
|
||||
"MapOfArrayOfModel",
|
||||
"MapTest",
|
||||
"MixedPropertiesAndAdditionalPropertiesClass",
|
||||
"Model200Response",
|
||||
"ModelReturn",
|
||||
"MultiArrays",
|
||||
"Name",
|
||||
"NullableClass",
|
||||
"NullableProperty",
|
||||
"NumberOnly",
|
||||
"ObjectToTestAdditionalProperties",
|
||||
"ObjectWithDeprecatedFields",
|
||||
"OneOfEnumString",
|
||||
"Order",
|
||||
"OuterComposite",
|
||||
"OuterEnum",
|
||||
"OuterEnumDefaultValue",
|
||||
"OuterEnumInteger",
|
||||
"OuterEnumIntegerDefaultValue",
|
||||
"OuterObjectWithEnumProperty",
|
||||
"Parent",
|
||||
"ParentWithOptionalDict",
|
||||
"Pet",
|
||||
"Pig",
|
||||
"PoopCleaning",
|
||||
"PrimitiveString",
|
||||
"PropertyMap",
|
||||
"PropertyNameCollision",
|
||||
"ReadOnlyFirst",
|
||||
"SecondCircularAllOfRef",
|
||||
"SecondRef",
|
||||
"SelfReferenceModel",
|
||||
"SingleRefType",
|
||||
"SpecialCharacterEnum",
|
||||
"SpecialModelName",
|
||||
"SpecialName",
|
||||
"Tag",
|
||||
"Task",
|
||||
"TaskActivity",
|
||||
"TestEnum",
|
||||
"TestEnumWithDefault",
|
||||
"TestErrorResponsesWithModel400Response",
|
||||
"TestErrorResponsesWithModel404Response",
|
||||
"TestInlineFreeformAdditionalPropertiesRequest",
|
||||
"TestModelWithEnumDefault",
|
||||
"TestObjectForMultipartRequestsRequestMarker",
|
||||
"Tiger",
|
||||
"UnnamedDictWithAdditionalModelListProperties",
|
||||
"UnnamedDictWithAdditionalStringListProperties",
|
||||
"UploadFileWithAdditionalPropertiesRequestObject",
|
||||
"User",
|
||||
"WithNestedOneOf",
|
||||
]
|
||||
|
||||
# import apis into sdk package
|
||||
from petstore_api.api.another_fake_api import AnotherFakeApi
|
||||
from petstore_api.api.default_api import DefaultApi
|
||||
|
@ -16,6 +16,136 @@
|
||||
|
||||
__version__ = "1.0.0"
|
||||
|
||||
# Define package exports
|
||||
__all__ = [
|
||||
"AnotherFakeApi",
|
||||
"DefaultApi",
|
||||
"FakeApi",
|
||||
"FakeClassnameTags123Api",
|
||||
"ImportTestDatetimeApi",
|
||||
"PetApi",
|
||||
"StoreApi",
|
||||
"UserApi",
|
||||
"ApiResponse",
|
||||
"ApiClient",
|
||||
"Configuration",
|
||||
"OpenApiException",
|
||||
"ApiTypeError",
|
||||
"ApiValueError",
|
||||
"ApiKeyError",
|
||||
"ApiAttributeError",
|
||||
"ApiException",
|
||||
"HttpSigningConfiguration",
|
||||
"AdditionalPropertiesAnyType",
|
||||
"AdditionalPropertiesClass",
|
||||
"AdditionalPropertiesObject",
|
||||
"AdditionalPropertiesWithDescriptionOnly",
|
||||
"AllOfSuperModel",
|
||||
"AllOfWithSingleRef",
|
||||
"Animal",
|
||||
"AnyOfColor",
|
||||
"AnyOfPig",
|
||||
"ArrayOfArrayOfModel",
|
||||
"ArrayOfArrayOfNumberOnly",
|
||||
"ArrayOfNumberOnly",
|
||||
"ArrayTest",
|
||||
"BaseDiscriminator",
|
||||
"BasquePig",
|
||||
"Bathing",
|
||||
"Capitalization",
|
||||
"Cat",
|
||||
"Category",
|
||||
"CircularAllOfRef",
|
||||
"CircularReferenceModel",
|
||||
"ClassModel",
|
||||
"Client",
|
||||
"Color",
|
||||
"Creature",
|
||||
"CreatureInfo",
|
||||
"DanishPig",
|
||||
"DeprecatedObject",
|
||||
"DiscriminatorAllOfSub",
|
||||
"DiscriminatorAllOfSuper",
|
||||
"Dog",
|
||||
"DummyModel",
|
||||
"EnumArrays",
|
||||
"EnumClass",
|
||||
"EnumNumberVendorExt",
|
||||
"EnumString1",
|
||||
"EnumString2",
|
||||
"EnumStringVendorExt",
|
||||
"EnumTest",
|
||||
"Feeding",
|
||||
"File",
|
||||
"FileSchemaTestClass",
|
||||
"FirstRef",
|
||||
"Foo",
|
||||
"FooGetDefaultResponse",
|
||||
"FormatTest",
|
||||
"HasOnlyReadOnly",
|
||||
"HealthCheckResult",
|
||||
"HuntingDog",
|
||||
"Info",
|
||||
"InnerDictWithProperty",
|
||||
"InputAllOf",
|
||||
"IntOrString",
|
||||
"ListClass",
|
||||
"MapOfArrayOfModel",
|
||||
"MapTest",
|
||||
"MixedPropertiesAndAdditionalPropertiesClass",
|
||||
"Model200Response",
|
||||
"ModelApiResponse",
|
||||
"ModelField",
|
||||
"ModelReturn",
|
||||
"MultiArrays",
|
||||
"Name",
|
||||
"NullableClass",
|
||||
"NullableProperty",
|
||||
"NumberOnly",
|
||||
"ObjectToTestAdditionalProperties",
|
||||
"ObjectWithDeprecatedFields",
|
||||
"OneOfEnumString",
|
||||
"Order",
|
||||
"OuterComposite",
|
||||
"OuterEnum",
|
||||
"OuterEnumDefaultValue",
|
||||
"OuterEnumInteger",
|
||||
"OuterEnumIntegerDefaultValue",
|
||||
"OuterObjectWithEnumProperty",
|
||||
"Parent",
|
||||
"ParentWithOptionalDict",
|
||||
"Pet",
|
||||
"Pig",
|
||||
"PoopCleaning",
|
||||
"PrimitiveString",
|
||||
"PropertyMap",
|
||||
"PropertyNameCollision",
|
||||
"ReadOnlyFirst",
|
||||
"SecondCircularAllOfRef",
|
||||
"SecondRef",
|
||||
"SelfReferenceModel",
|
||||
"SingleRefType",
|
||||
"SpecialCharacterEnum",
|
||||
"SpecialModelName",
|
||||
"SpecialName",
|
||||
"Tag",
|
||||
"Task",
|
||||
"TaskActivity",
|
||||
"TestEnum",
|
||||
"TestEnumWithDefault",
|
||||
"TestErrorResponsesWithModel400Response",
|
||||
"TestErrorResponsesWithModel404Response",
|
||||
"TestInlineFreeformAdditionalPropertiesRequest",
|
||||
"TestModelWithEnumDefault",
|
||||
"TestObjectForMultipartRequestsRequestMarker",
|
||||
"Tiger",
|
||||
"UnnamedDictWithAdditionalModelListProperties",
|
||||
"UnnamedDictWithAdditionalStringListProperties",
|
||||
"UploadFileWithAdditionalPropertiesRequestObject",
|
||||
"User",
|
||||
"WithNestedOneOf",
|
||||
]
|
||||
|
||||
# import apis into sdk package
|
||||
from petstore_api.api.another_fake_api import AnotherFakeApi
|
||||
from petstore_api.api.default_api import DefaultApi
|
||||
|
Loading…
x
Reference in New Issue
Block a user