forked from loafle/openapi-generator-original
Adds IJsonSchemaValidationProperties format getter and setter +uses the format info (#13360)
* Adds format getter and setter * Updates codegenProperty * Updates codegenModel * Updates codegenParameter + Response * Sets format and removes unused import code in python-experimental * Samples regenerated * Samples regenerated * Adds AnyTypeAndFormat * Separates format bases out from their str or number bases * Docs updated * Updates python-exp, stops setting isDate and uses format instead * Removes python-experimental isDate usages * Fixes password usages * Turns off isDateTime in python-experimental java layer * Sample regnerated without isDateTime * Removes isUuid * Turns off isDecimal, decimal_payload broken * Removes isDecimal * Removes isByteArray * Removes isBinary python-exp usages * Removes isFloat isDouble setting from python-experimental * Removes isDouble isFloat usages in sample * Stops setting isShort and isLong in python-exp java layer * Removes isShort isLong usages from python-exp and generates sample * Adds decimal as integer input * Adds missing bool type * Adds validations to format mixins, adds test_uuid * Adds test_date * Adds test_date_time * Adds test_number * Adds test_int32 * Adds test_int64 * Adds test_double * Adds test_float * Samples updated * Fixes javadoc
This commit is contained in:
parent
928070c57a
commit
c59759f20a
@ -114,6 +114,7 @@ public class CodegenModel implements IJsonSchemaValidationProperties {
|
|||||||
private boolean schemaIsFromAdditionalProperties;
|
private boolean schemaIsFromAdditionalProperties;
|
||||||
private boolean isBooleanSchemaTrue;
|
private boolean isBooleanSchemaTrue;
|
||||||
private boolean isBooleanSchemaFalse;
|
private boolean isBooleanSchemaFalse;
|
||||||
|
private String format;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The type of the value for the additionalProperties keyword in the OAS document.
|
* The type of the value for the additionalProperties keyword in the OAS document.
|
||||||
@ -199,6 +200,16 @@ public class CodegenModel implements IJsonSchemaValidationProperties {
|
|||||||
this.isBooleanSchemaFalse = isBooleanSchemaFalse;
|
this.isBooleanSchemaFalse = isBooleanSchemaFalse;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getFormat() {
|
||||||
|
return format;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setFormat(String format) {
|
||||||
|
this.format = format;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getRef() {
|
public String getRef() {
|
||||||
return ref;
|
return ref;
|
||||||
@ -987,6 +998,7 @@ public class CodegenModel implements IJsonSchemaValidationProperties {
|
|||||||
getUniqueItems() == that.getUniqueItems() &&
|
getUniqueItems() == that.getUniqueItems() &&
|
||||||
getExclusiveMinimum() == that.getExclusiveMinimum() &&
|
getExclusiveMinimum() == that.getExclusiveMinimum() &&
|
||||||
getExclusiveMaximum() == that.getExclusiveMaximum() &&
|
getExclusiveMaximum() == that.getExclusiveMaximum() &&
|
||||||
|
Objects.equals(format, that.getFormat()) &&
|
||||||
Objects.equals(uniqueItemsBoolean, that.getUniqueItemsBoolean()) &&
|
Objects.equals(uniqueItemsBoolean, that.getUniqueItemsBoolean()) &&
|
||||||
Objects.equals(ref, that.getRef()) &&
|
Objects.equals(ref, that.getRef()) &&
|
||||||
Objects.equals(requiredVarsMap, that.getRequiredVarsMap()) &&
|
Objects.equals(requiredVarsMap, that.getRequiredVarsMap()) &&
|
||||||
@ -1063,7 +1075,8 @@ public class CodegenModel implements IJsonSchemaValidationProperties {
|
|||||||
getMaximum(), getPattern(), getMultipleOf(), getItems(), getAdditionalProperties(), getIsModel(),
|
getMaximum(), getPattern(), getMultipleOf(), getItems(), getAdditionalProperties(), getIsModel(),
|
||||||
getAdditionalPropertiesIsAnyType(), hasDiscriminatorWithNonEmptyMapping,
|
getAdditionalPropertiesIsAnyType(), hasDiscriminatorWithNonEmptyMapping,
|
||||||
isAnyType, getComposedSchemas(), hasMultipleTypes, isDecimal, isUuid, requiredVarsMap, ref,
|
isAnyType, getComposedSchemas(), hasMultipleTypes, isDecimal, isUuid, requiredVarsMap, ref,
|
||||||
uniqueItemsBoolean, schemaIsFromAdditionalProperties, isBooleanSchemaTrue, isBooleanSchemaFalse);
|
uniqueItemsBoolean, schemaIsFromAdditionalProperties, isBooleanSchemaTrue, isBooleanSchemaFalse,
|
||||||
|
format);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -1166,6 +1179,7 @@ public class CodegenModel implements IJsonSchemaValidationProperties {
|
|||||||
sb.append(", schemaIsFromAdditionalProperties=").append(schemaIsFromAdditionalProperties);
|
sb.append(", schemaIsFromAdditionalProperties=").append(schemaIsFromAdditionalProperties);
|
||||||
sb.append(", isBooleanSchemaTrue=").append(isBooleanSchemaTrue);
|
sb.append(", isBooleanSchemaTrue=").append(isBooleanSchemaTrue);
|
||||||
sb.append(", isBooleanSchemaFalse=").append(isBooleanSchemaFalse);
|
sb.append(", isBooleanSchemaFalse=").append(isBooleanSchemaFalse);
|
||||||
|
sb.append(", format=").append(format);
|
||||||
sb.append('}');
|
sb.append('}');
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
@ -460,6 +460,16 @@ public class CodegenParameter implements IJsonSchemaValidationProperties {
|
|||||||
@Override
|
@Override
|
||||||
public void setIsBooleanSchemaFalse(boolean isBooleanSchemaFalse) {}
|
public void setIsBooleanSchemaFalse(boolean isBooleanSchemaFalse) {}
|
||||||
|
|
||||||
|
// use schema.getFormat or content.mediaType.schema.getFormat instead of this
|
||||||
|
@Override
|
||||||
|
public String getFormat() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// use schema.setFormat or content.mediaType.schema.setFormat instead of this
|
||||||
|
@Override
|
||||||
|
public void setFormat(String format) {}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getPattern() {
|
public String getPattern() {
|
||||||
return pattern;
|
return pattern;
|
||||||
|
@ -200,6 +200,13 @@ public class CodegenProperty implements Cloneable, IJsonSchemaValidationProperti
|
|||||||
private boolean schemaIsFromAdditionalProperties;
|
private boolean schemaIsFromAdditionalProperties;
|
||||||
private boolean isBooleanSchemaTrue;
|
private boolean isBooleanSchemaTrue;
|
||||||
private boolean isBooleanSchemaFalse;
|
private boolean isBooleanSchemaFalse;
|
||||||
|
private String format;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setFormat(String format) { this.format = format; }
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getFormat() { return format; }
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean getIsBooleanSchemaTrue() {
|
public boolean getIsBooleanSchemaTrue() {
|
||||||
@ -742,6 +749,9 @@ public class CodegenProperty implements Cloneable, IJsonSchemaValidationProperti
|
|||||||
if (this.ref != null) {
|
if (this.ref != null) {
|
||||||
cp.setRef(this.ref);
|
cp.setRef(this.ref);
|
||||||
}
|
}
|
||||||
|
if (this.format != null) {
|
||||||
|
cp.setFormat(this.format);
|
||||||
|
}
|
||||||
|
|
||||||
return cp;
|
return cp;
|
||||||
} catch (CloneNotSupportedException e) {
|
} catch (CloneNotSupportedException e) {
|
||||||
@ -1040,6 +1050,7 @@ public class CodegenProperty implements Cloneable, IJsonSchemaValidationProperti
|
|||||||
sb.append(", schemaIsFromAdditionalProperties=").append(schemaIsFromAdditionalProperties);
|
sb.append(", schemaIsFromAdditionalProperties=").append(schemaIsFromAdditionalProperties);
|
||||||
sb.append(", isBooleanSchemaTrue=").append(isBooleanSchemaTrue);
|
sb.append(", isBooleanSchemaTrue=").append(isBooleanSchemaTrue);
|
||||||
sb.append(", isBooleanSchemaFalse=").append(isBooleanSchemaFalse);
|
sb.append(", isBooleanSchemaFalse=").append(isBooleanSchemaFalse);
|
||||||
|
sb.append(", format=").append(format);
|
||||||
sb.append('}');
|
sb.append('}');
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
@ -1101,6 +1112,7 @@ public class CodegenProperty implements Cloneable, IJsonSchemaValidationProperti
|
|||||||
getAdditionalPropertiesIsAnyType() == that.getAdditionalPropertiesIsAnyType() &&
|
getAdditionalPropertiesIsAnyType() == that.getAdditionalPropertiesIsAnyType() &&
|
||||||
getHasVars() == that.getHasVars() &&
|
getHasVars() == that.getHasVars() &&
|
||||||
getHasRequired() == that.getHasRequired() &&
|
getHasRequired() == that.getHasRequired() &&
|
||||||
|
Objects.equals(format, that.getFormat()) &&
|
||||||
Objects.equals(uniqueItemsBoolean, that.getUniqueItemsBoolean()) &&
|
Objects.equals(uniqueItemsBoolean, that.getUniqueItemsBoolean()) &&
|
||||||
Objects.equals(ref, that.getRef()) &&
|
Objects.equals(ref, that.getRef()) &&
|
||||||
Objects.equals(requiredVarsMap, that.getRequiredVarsMap()) &&
|
Objects.equals(requiredVarsMap, that.getRequiredVarsMap()) &&
|
||||||
@ -1168,6 +1180,7 @@ public class CodegenProperty implements Cloneable, IJsonSchemaValidationProperti
|
|||||||
nameInSnakeCase, enumName, maxItems, minItems, isXmlAttribute, xmlPrefix, xmlName,
|
nameInSnakeCase, enumName, maxItems, minItems, isXmlAttribute, xmlPrefix, xmlName,
|
||||||
xmlNamespace, isXmlWrapped, isNull, additionalPropertiesIsAnyType, hasVars, hasRequired,
|
xmlNamespace, isXmlWrapped, isNull, additionalPropertiesIsAnyType, hasVars, hasRequired,
|
||||||
hasDiscriminatorWithNonEmptyMapping, composedSchemas, hasMultipleTypes, requiredVarsMap,
|
hasDiscriminatorWithNonEmptyMapping, composedSchemas, hasMultipleTypes, requiredVarsMap,
|
||||||
ref, uniqueItemsBoolean, schemaIsFromAdditionalProperties, isBooleanSchemaTrue, isBooleanSchemaFalse);
|
ref, uniqueItemsBoolean, schemaIsFromAdditionalProperties, isBooleanSchemaTrue, isBooleanSchemaFalse,
|
||||||
|
format);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -209,6 +209,16 @@ public class CodegenResponse implements IJsonSchemaValidationProperties {
|
|||||||
@Override
|
@Override
|
||||||
public void setIsBooleanSchemaFalse(boolean isBooleanSchemaFalse) {}
|
public void setIsBooleanSchemaFalse(boolean isBooleanSchemaFalse) {}
|
||||||
|
|
||||||
|
// use content.mediaType.schema.getFormat instead of this
|
||||||
|
@Override
|
||||||
|
public String getFormat() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// use content.mediaType.schema.setFormat instead of this
|
||||||
|
@Override
|
||||||
|
public void setFormat(String format) {}
|
||||||
|
|
||||||
public LinkedHashMap<String, CodegenMediaType> getContent() {
|
public LinkedHashMap<String, CodegenMediaType> getContent() {
|
||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
|
@ -2785,6 +2785,52 @@ public class DefaultCodegen implements CodegenConfig {
|
|||||||
return schemaTestCases;
|
return schemaTestCases;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the booleans that define the model's type
|
||||||
|
*
|
||||||
|
* @param model the model to update
|
||||||
|
* @param schema the model's schema
|
||||||
|
*/
|
||||||
|
protected void updateModelForString(CodegenModel model, Schema schema) {
|
||||||
|
// NOTE: String schemas as CodegenModel is a rare use case and may be removed at a later date.
|
||||||
|
if (ModelUtils.isDateTimeSchema(schema)) {
|
||||||
|
// NOTE: DateTime schemas as CodegenModel is a rare use case and may be removed at a later date.
|
||||||
|
model.setIsString(false); // for backward compatibility with 2.x
|
||||||
|
model.isDateTime = Boolean.TRUE;
|
||||||
|
} else if (ModelUtils.isDateSchema(schema)) {
|
||||||
|
// NOTE: Date schemas as CodegenModel is a rare use case and may be removed at a later date.
|
||||||
|
model.setIsString(false); // for backward compatibility with 2.x
|
||||||
|
model.isDate = Boolean.TRUE;
|
||||||
|
} else if (ModelUtils.isUUIDSchema(schema)) {
|
||||||
|
// NOTE: UUID schemas as CodegenModel is a rare use case and may be removed at a later date.
|
||||||
|
model.setIsString(false);
|
||||||
|
model.setIsUuid(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void updateModelForNumber(CodegenModel model, Schema schema) {
|
||||||
|
// NOTE: Number schemas as CodegenModel is a rare use case and may be removed at a later date.
|
||||||
|
model.isNumeric = Boolean.TRUE;
|
||||||
|
if (ModelUtils.isFloatSchema(schema)) { // float
|
||||||
|
model.isFloat = Boolean.TRUE;
|
||||||
|
} else if (ModelUtils.isDoubleSchema(schema)) { // double
|
||||||
|
model.isDouble = Boolean.TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void updateModelForInteger(CodegenModel model, Schema schema) {
|
||||||
|
// NOTE: Integral schemas as CodegenModel is a rare use case and may be removed at a later date.
|
||||||
|
model.isNumeric = Boolean.TRUE;
|
||||||
|
if (ModelUtils.isLongSchema(schema)) { // int64/long format
|
||||||
|
model.isLong = Boolean.TRUE;
|
||||||
|
} else {
|
||||||
|
model.isInteger = Boolean.TRUE; // older use case, int32 and unbounded int
|
||||||
|
if (ModelUtils.isShortSchema(schema)) { // int32
|
||||||
|
model.setIsShort(Boolean.TRUE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert OAS Model object to Codegen Model object.
|
* Convert OAS Model object to Codegen Model object.
|
||||||
*
|
*
|
||||||
@ -2866,6 +2912,7 @@ public class DefaultCodegen implements CodegenConfig {
|
|||||||
}
|
}
|
||||||
|
|
||||||
m.setTypeProperties(schema);
|
m.setTypeProperties(schema);
|
||||||
|
m.setFormat(schema.getFormat());
|
||||||
m.setComposedSchemas(getComposedSchemas(schema));
|
m.setComposedSchemas(getComposedSchemas(schema));
|
||||||
if (ModelUtils.isArraySchema(schema)) {
|
if (ModelUtils.isArraySchema(schema)) {
|
||||||
CodegenProperty arrayProperty = fromProperty(name, schema, false);
|
CodegenProperty arrayProperty = fromProperty(name, schema, false);
|
||||||
@ -2873,39 +2920,11 @@ public class DefaultCodegen implements CodegenConfig {
|
|||||||
m.arrayModelType = arrayProperty.complexType;
|
m.arrayModelType = arrayProperty.complexType;
|
||||||
addParentContainer(m, name, schema);
|
addParentContainer(m, name, schema);
|
||||||
} else if (ModelUtils.isIntegerSchema(schema)) { // integer type
|
} else if (ModelUtils.isIntegerSchema(schema)) { // integer type
|
||||||
// NOTE: Integral schemas as CodegenModel is a rare use case and may be removed at a later date.
|
updateModelForInteger(m, schema);
|
||||||
m.isNumeric = Boolean.TRUE;
|
|
||||||
if (ModelUtils.isLongSchema(schema)) { // int64/long format
|
|
||||||
m.isLong = Boolean.TRUE;
|
|
||||||
} else {
|
|
||||||
m.isInteger = Boolean.TRUE; // older use case, int32 and unbounded int
|
|
||||||
if (ModelUtils.isShortSchema(schema)) { // int32
|
|
||||||
m.setIsShort(Boolean.TRUE);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (ModelUtils.isStringSchema(schema)) {
|
} else if (ModelUtils.isStringSchema(schema)) {
|
||||||
// NOTE: String schemas as CodegenModel is a rare use case and may be removed at a later date.
|
updateModelForString(m, schema);
|
||||||
if (ModelUtils.isDateTimeSchema(schema)) {
|
|
||||||
// NOTE: DateTime schemas as CodegenModel is a rare use case and may be removed at a later date.
|
|
||||||
m.setIsString(false); // for backward compatibility with 2.x
|
|
||||||
m.isDateTime = Boolean.TRUE;
|
|
||||||
} else if (ModelUtils.isDateSchema(schema)) {
|
|
||||||
// NOTE: Date schemas as CodegenModel is a rare use case and may be removed at a later date.
|
|
||||||
m.setIsString(false); // for backward compatibility with 2.x
|
|
||||||
m.isDate = Boolean.TRUE;
|
|
||||||
} else if (ModelUtils.isUUIDSchema(schema)) {
|
|
||||||
// NOTE: UUID schemas as CodegenModel is a rare use case and may be removed at a later date.
|
|
||||||
m.setIsString(false);
|
|
||||||
m.setIsUuid(true);
|
|
||||||
}
|
|
||||||
} else if (ModelUtils.isNumberSchema(schema)) {
|
} else if (ModelUtils.isNumberSchema(schema)) {
|
||||||
// NOTE: Number schemas as CodegenModel is a rare use case and may be removed at a later date.
|
updateModelForNumber(m, schema);
|
||||||
m.isNumeric = Boolean.TRUE;
|
|
||||||
if (ModelUtils.isFloatSchema(schema)) { // float
|
|
||||||
m.isFloat = Boolean.TRUE;
|
|
||||||
} else if (ModelUtils.isDoubleSchema(schema)) { // double
|
|
||||||
m.isDouble = Boolean.TRUE;
|
|
||||||
}
|
|
||||||
} else if (ModelUtils.isAnyType(schema)) {
|
} else if (ModelUtils.isAnyType(schema)) {
|
||||||
updateModelForAnyType(m, schema);
|
updateModelForAnyType(m, schema);
|
||||||
} else if (ModelUtils.isTypeObjectSchema(schema)) {
|
} else if (ModelUtils.isTypeObjectSchema(schema)) {
|
||||||
@ -3575,6 +3594,27 @@ public class DefaultCodegen implements CodegenConfig {
|
|||||||
property.pattern = toRegularExpression(p.getPattern());
|
property.pattern = toRegularExpression(p.getPattern());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected void updatePropertyForNumber(CodegenProperty property, Schema p) {
|
||||||
|
property.isNumeric = Boolean.TRUE;
|
||||||
|
if (ModelUtils.isFloatSchema(p)) { // float
|
||||||
|
property.isFloat = Boolean.TRUE;
|
||||||
|
} else if (ModelUtils.isDoubleSchema(p)) { // double
|
||||||
|
property.isDouble = Boolean.TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void updatePropertyForInteger(CodegenProperty property, Schema p) {
|
||||||
|
property.isNumeric = Boolean.TRUE;
|
||||||
|
if (ModelUtils.isLongSchema(p)) { // int64/long format
|
||||||
|
property.isLong = Boolean.TRUE;
|
||||||
|
} else {
|
||||||
|
property.isInteger = Boolean.TRUE; // older use case, int32 and unbounded int
|
||||||
|
if (ModelUtils.isShortSchema(p)) { // int32
|
||||||
|
property.setIsShort(Boolean.TRUE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO remove this in 7.0.0 as a breaking change
|
* TODO remove this in 7.0.0 as a breaking change
|
||||||
* This method was kept when required was added to the fromProperty signature
|
* This method was kept when required was added to the fromProperty signature
|
||||||
@ -3646,6 +3686,7 @@ public class DefaultCodegen implements CodegenConfig {
|
|||||||
property.setSchemaIsFromAdditionalProperties(schemaIsFromAdditionalProperties);
|
property.setSchemaIsFromAdditionalProperties(schemaIsFromAdditionalProperties);
|
||||||
property.required = required;
|
property.required = required;
|
||||||
ModelUtils.syncValidationProperties(p, property);
|
ModelUtils.syncValidationProperties(p, property);
|
||||||
|
property.setFormat(p.getFormat());
|
||||||
|
|
||||||
property.name = toVarName(name);
|
property.name = toVarName(name);
|
||||||
property.baseName = name;
|
property.baseName = name;
|
||||||
@ -3763,15 +3804,7 @@ public class DefaultCodegen implements CodegenConfig {
|
|||||||
property.setTypeProperties(p);
|
property.setTypeProperties(p);
|
||||||
property.setComposedSchemas(getComposedSchemas(p));
|
property.setComposedSchemas(getComposedSchemas(p));
|
||||||
if (ModelUtils.isIntegerSchema(p)) { // integer type
|
if (ModelUtils.isIntegerSchema(p)) { // integer type
|
||||||
property.isNumeric = Boolean.TRUE;
|
updatePropertyForInteger(property, p);
|
||||||
if (ModelUtils.isLongSchema(p)) { // int64/long format
|
|
||||||
property.isLong = Boolean.TRUE;
|
|
||||||
} else {
|
|
||||||
property.isInteger = Boolean.TRUE; // older use case, int32 and unbounded int
|
|
||||||
if (ModelUtils.isShortSchema(p)) { // int32
|
|
||||||
property.setIsShort(Boolean.TRUE);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (ModelUtils.isBooleanSchema(p)) { // boolean type
|
} else if (ModelUtils.isBooleanSchema(p)) { // boolean type
|
||||||
property.getter = toBooleanGetter(name);
|
property.getter = toBooleanGetter(name);
|
||||||
} else if (ModelUtils.isFileSchema(p) && !ModelUtils.isStringSchema(p)) {
|
} else if (ModelUtils.isFileSchema(p) && !ModelUtils.isStringSchema(p)) {
|
||||||
@ -3780,12 +3813,7 @@ public class DefaultCodegen implements CodegenConfig {
|
|||||||
} else if (ModelUtils.isStringSchema(p)) {
|
} else if (ModelUtils.isStringSchema(p)) {
|
||||||
updatePropertyForString(property, p);
|
updatePropertyForString(property, p);
|
||||||
} else if (ModelUtils.isNumberSchema(p)) {
|
} else if (ModelUtils.isNumberSchema(p)) {
|
||||||
property.isNumeric = Boolean.TRUE;
|
updatePropertyForNumber(property, p);
|
||||||
if (ModelUtils.isFloatSchema(p)) { // float
|
|
||||||
property.isFloat = Boolean.TRUE;
|
|
||||||
} else if (ModelUtils.isDoubleSchema(p)) { // double
|
|
||||||
property.isDouble = Boolean.TRUE;
|
|
||||||
}
|
|
||||||
} else if (ModelUtils.isArraySchema(p)) {
|
} else if (ModelUtils.isArraySchema(p)) {
|
||||||
// default to string if inner item is undefined
|
// default to string if inner item is undefined
|
||||||
property.isContainer = true;
|
property.isContainer = true;
|
||||||
|
@ -202,6 +202,10 @@ public interface IJsonSchemaValidationProperties {
|
|||||||
|
|
||||||
void setSchemaIsFromAdditionalProperties(boolean schemaIsFromAdditionalProperties);
|
void setSchemaIsFromAdditionalProperties(boolean schemaIsFromAdditionalProperties);
|
||||||
|
|
||||||
|
void setFormat(String format);
|
||||||
|
|
||||||
|
String getFormat();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Syncs all the schema's type properties into the IJsonSchemaValidationProperties instance
|
* Syncs all the schema's type properties into the IJsonSchemaValidationProperties instance
|
||||||
* for now this only supports types without format information
|
* for now this only supports types without format information
|
||||||
|
@ -663,6 +663,40 @@ public class PerlClientCodegen extends DefaultCodegen implements CodegenConfig {
|
|||||||
System.out.println("################################################################################");
|
System.out.println("################################################################################");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert OAS Model object to Codegen Model object
|
||||||
|
* A custom version is made for this method to ensure that
|
||||||
|
* model.format remains empty string
|
||||||
|
*
|
||||||
|
* @param name the name of the model
|
||||||
|
* @param sc OAS Model object
|
||||||
|
* @return Codegen Model object
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public CodegenModel fromModel(String name, Schema sc) {
|
||||||
|
CodegenModel cm = super.fromModel(name, sc);
|
||||||
|
cm.setFormat("");
|
||||||
|
return cm;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert OAS Property object to Codegen Property object
|
||||||
|
* A custom version is made for this method to ensure that
|
||||||
|
* property.format remains empty string
|
||||||
|
*
|
||||||
|
* @param name name of the property
|
||||||
|
* @param p OAS property schema
|
||||||
|
* @param required true if the property is required in the next higher object schema, false otherwise
|
||||||
|
* @param schemaIsFromAdditionalProperties true if the property is defined by additional properties schema
|
||||||
|
* @return Codegen Property object
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public CodegenProperty fromProperty(String name, Schema p, boolean required, boolean schemaIsFromAdditionalProperties) {
|
||||||
|
CodegenProperty property = super.fromProperty(name, p, required, schemaIsFromAdditionalProperties);
|
||||||
|
property.setFormat("");
|
||||||
|
return property;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public GeneratorLanguage generatorLanguage() { return GeneratorLanguage.PERL; }
|
public GeneratorLanguage generatorLanguage() { return GeneratorLanguage.PERL; }
|
||||||
}
|
}
|
||||||
|
@ -1168,9 +1168,6 @@ public class PythonExperimentalClientCodegen extends AbstractPythonCodegen {
|
|||||||
schema.setName(name);
|
schema.setName(name);
|
||||||
codegenModel = fromModel(name, schema);
|
codegenModel = fromModel(name, schema);
|
||||||
}
|
}
|
||||||
if (codegenModel != null) {
|
|
||||||
codegenParameter.isModel = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (codegenModel != null && (codegenModel.hasVars || forceSimpleRef)) {
|
if (codegenModel != null && (codegenModel.hasVars || forceSimpleRef)) {
|
||||||
if (StringUtils.isEmpty(bodyParameterName)) {
|
if (StringUtils.isEmpty(bodyParameterName)) {
|
||||||
@ -1183,49 +1180,32 @@ public class PythonExperimentalClientCodegen extends AbstractPythonCodegen {
|
|||||||
codegenParameter.dataType = getTypeDeclaration(codegenModel.classname);
|
codegenParameter.dataType = getTypeDeclaration(codegenModel.classname);
|
||||||
codegenParameter.description = codegenModel.description;
|
codegenParameter.description = codegenModel.description;
|
||||||
codegenParameter.isNullable = codegenModel.isNullable;
|
codegenParameter.isNullable = codegenModel.isNullable;
|
||||||
imports.add(codegenParameter.baseType);
|
|
||||||
} else {
|
} else {
|
||||||
CodegenProperty codegenProperty = fromProperty("property", schema, false);
|
CodegenProperty codegenProperty = fromProperty("property", schema, false);
|
||||||
|
|
||||||
if (codegenProperty != null && codegenProperty.getComplexType() != null && codegenProperty.getComplexType().contains(" | ")) {
|
if (ModelUtils.isMapSchema(schema)) {// http body is map
|
||||||
List<String> parts = Arrays.asList(codegenProperty.getComplexType().split(" \\| "));
|
// LOGGER.error("Map should be supported. Please report to openapi-generator github repo about the issue.");
|
||||||
imports.addAll(parts);
|
} else if (codegenProperty != null) {
|
||||||
String codegenModelName = codegenProperty.getComplexType();
|
String codegenModelName, codegenModelDescription;
|
||||||
codegenParameter.baseName = codegenModelName;
|
|
||||||
codegenParameter.paramName = toParamName(codegenParameter.baseName);
|
|
||||||
codegenParameter.baseType = codegenParameter.baseName;
|
|
||||||
codegenParameter.dataType = getTypeDeclaration(codegenModelName);
|
|
||||||
codegenParameter.description = codegenProperty.getDescription();
|
|
||||||
codegenParameter.isNullable = codegenProperty.isNullable;
|
|
||||||
} else {
|
|
||||||
if (ModelUtils.isMapSchema(schema)) {// http body is map
|
|
||||||
LOGGER.error("Map should be supported. Please report to openapi-generator github repo about the issue.");
|
|
||||||
} else if (codegenProperty != null) {
|
|
||||||
String codegenModelName, codegenModelDescription;
|
|
||||||
|
|
||||||
if (codegenModel != null) {
|
if (codegenModel != null) {
|
||||||
codegenModelName = codegenModel.classname;
|
codegenModelName = codegenModel.classname;
|
||||||
codegenModelDescription = codegenModel.description;
|
codegenModelDescription = codegenModel.description;
|
||||||
} else {
|
} else {
|
||||||
codegenModelName = "anyType";
|
codegenModelName = "anyType";
|
||||||
codegenModelDescription = "";
|
codegenModelDescription = "";
|
||||||
}
|
|
||||||
|
|
||||||
if (StringUtils.isEmpty(bodyParameterName)) {
|
|
||||||
codegenParameter.baseName = codegenModelName;
|
|
||||||
} else {
|
|
||||||
codegenParameter.baseName = bodyParameterName;
|
|
||||||
}
|
|
||||||
|
|
||||||
codegenParameter.paramName = toParamName(codegenParameter.baseName);
|
|
||||||
codegenParameter.baseType = codegenModelName;
|
|
||||||
codegenParameter.dataType = getTypeDeclaration(codegenModelName);
|
|
||||||
codegenParameter.description = codegenModelDescription;
|
|
||||||
|
|
||||||
if (codegenProperty.complexType != null) {
|
|
||||||
imports.add(codegenProperty.complexType);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (StringUtils.isEmpty(bodyParameterName)) {
|
||||||
|
codegenParameter.baseName = codegenModelName;
|
||||||
|
} else {
|
||||||
|
codegenParameter.baseName = bodyParameterName;
|
||||||
|
}
|
||||||
|
|
||||||
|
codegenParameter.paramName = toParamName(codegenParameter.baseName);
|
||||||
|
codegenParameter.baseType = codegenModelName;
|
||||||
|
codegenParameter.dataType = getTypeDeclaration(codegenModelName);
|
||||||
|
codegenParameter.description = codegenModelDescription;
|
||||||
}
|
}
|
||||||
|
|
||||||
// set nullable
|
// set nullable
|
||||||
@ -1431,26 +1411,12 @@ public class PythonExperimentalClientCodegen extends AbstractPythonCodegen {
|
|||||||
@Override
|
@Override
|
||||||
public CodegenModel fromModel(String name, Schema sc) {
|
public CodegenModel fromModel(String name, Schema sc) {
|
||||||
CodegenModel cm = super.fromModel(name, sc);
|
CodegenModel cm = super.fromModel(name, sc);
|
||||||
Schema unaliasedSchema = unaliasSchema(sc);
|
|
||||||
if (unaliasedSchema != null) {
|
|
||||||
if (ModelUtils.isDecimalSchema(unaliasedSchema)) { // type: string, format: number
|
|
||||||
cm.isString = false;
|
|
||||||
cm.isDecimal = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (cm.isNullable) {
|
if (cm.isNullable) {
|
||||||
cm.setIsNull(true);
|
cm.setIsNull(true);
|
||||||
cm.isNullable = false;
|
cm.isNullable = false;
|
||||||
cm.setHasMultipleTypes(true);
|
cm.setHasMultipleTypes(true);
|
||||||
}
|
}
|
||||||
// TODO improve this imports addition code
|
|
||||||
if (cm.isArray && cm.getItems() != null && cm.getItems().complexType != null) {
|
|
||||||
cm.imports.add(cm.getItems().complexType);
|
|
||||||
}
|
|
||||||
if (cm.isArray && cm.getItems() != null && cm.getItems().mostInnerItems != null && cm.getItems().mostInnerItems.complexType != null) {
|
|
||||||
cm.imports.add(cm.getItems().mostInnerItems.complexType);
|
|
||||||
}
|
|
||||||
Boolean isNotPythonModelSimpleModel = (ModelUtils.isComposedSchema(sc) || ModelUtils.isObjectSchema(sc) || ModelUtils.isMapSchema(sc));
|
Boolean isNotPythonModelSimpleModel = (ModelUtils.isComposedSchema(sc) || ModelUtils.isObjectSchema(sc) || ModelUtils.isMapSchema(sc));
|
||||||
setAdditionalPropsAndItemsVarNames(cm);
|
setAdditionalPropsAndItemsVarNames(cm);
|
||||||
if (isNotPythonModelSimpleModel) {
|
if (isNotPythonModelSimpleModel) {
|
||||||
@ -1601,22 +1567,6 @@ public class PythonExperimentalClientCodegen extends AbstractPythonCodegen {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void addAdditionPropertiesToCodeGenModel(CodegenModel codegenModel, Schema schema) {
|
protected void addAdditionPropertiesToCodeGenModel(CodegenModel codegenModel, Schema schema) {
|
||||||
Schema addProps = getAdditionalProperties(schema);
|
|
||||||
if (addProps != null) {
|
|
||||||
// if AdditionalProperties exists, get its datatype and
|
|
||||||
// store it in codegenModel.additionalPropertiesType.
|
|
||||||
// The 'addProps' may be a reference, getTypeDeclaration will resolve
|
|
||||||
// the reference.
|
|
||||||
List<String> referencedModelNames = new ArrayList<String>();
|
|
||||||
codegenModel.additionalPropertiesType = getTypeString(addProps, "", "", referencedModelNames);
|
|
||||||
if (referencedModelNames.size() != 0) {
|
|
||||||
// Models that are referenced in the 'additionalPropertiesType' keyword
|
|
||||||
// must be added to the imports.
|
|
||||||
codegenModel.imports.addAll(referencedModelNames);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// If addProps is null, the value of the 'additionalProperties' keyword is set
|
|
||||||
// to false, i.e. no additional properties are allowed.
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -2281,33 +2231,70 @@ public class PythonExperimentalClientCodegen extends AbstractPythonCodegen {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the booleans that define the model's type
|
||||||
|
*
|
||||||
|
* @param model the model to update
|
||||||
|
* @param schema the model's schema
|
||||||
|
*/
|
||||||
|
protected void updateModelForString(CodegenModel model, Schema schema) {
|
||||||
|
if (ModelUtils.isDateTimeSchema(schema)) {
|
||||||
|
// isString stays true, format stores that this is a date-time
|
||||||
|
} else if (ModelUtils.isDateSchema(schema)) {
|
||||||
|
// isString stays true, format stores that this is a date
|
||||||
|
} else if (ModelUtils.isUUIDSchema(schema)) {
|
||||||
|
// isString stays true, format stores that this is a uuid
|
||||||
|
} else if (ModelUtils.isDecimalSchema(schema)) {
|
||||||
|
// isString stays true, format stores that this is a uuid
|
||||||
|
} else if (ModelUtils.isBinarySchema(schema)) {
|
||||||
|
// format stores that this is binary
|
||||||
|
model.isString = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void updateModelForNumber(CodegenModel model, Schema schema) {
|
||||||
|
model.setIsNumber(true);
|
||||||
|
// float vs double info is stored in format
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void updateModelForInteger(CodegenModel model, Schema schema) {
|
||||||
|
model.isInteger = true;
|
||||||
|
// int32 int64 info is stored in format
|
||||||
|
}
|
||||||
|
|
||||||
protected void updatePropertyForString(CodegenProperty property, Schema p) {
|
protected void updatePropertyForString(CodegenProperty property, Schema p) {
|
||||||
if (ModelUtils.isByteArraySchema(p)) {
|
if (ModelUtils.isByteArraySchema(p)) {
|
||||||
property.isByteArray = true;
|
// isString stays true, format stores that this is a byte
|
||||||
property.setIsString(false);
|
|
||||||
} else if (ModelUtils.isBinarySchema(p)) {
|
} else if (ModelUtils.isBinarySchema(p)) {
|
||||||
property.isBinary = true;
|
// format stores that this is binary
|
||||||
property.isFile = true; // file = binary in OAS3
|
property.isString = true;
|
||||||
} else if (ModelUtils.isUUIDSchema(p)) {
|
} else if (ModelUtils.isUUIDSchema(p)) {
|
||||||
property.setIsString(false); // so the templates only see isUuid
|
// isString stays true, format stores that this is a uuid
|
||||||
property.setIsUuid(true);
|
|
||||||
} else if (ModelUtils.isURISchema(p)) {
|
} else if (ModelUtils.isURISchema(p)) {
|
||||||
property.isUri = true;
|
property.isUri = true;
|
||||||
} else if (ModelUtils.isEmailSchema(p)) {
|
} else if (ModelUtils.isEmailSchema(p)) {
|
||||||
property.isEmail = true;
|
property.isEmail = true;
|
||||||
} else if (ModelUtils.isDateSchema(p)) { // date format
|
} else if (ModelUtils.isDateSchema(p)) { // date format
|
||||||
property.setIsString(false); // so the templates only see isDate
|
// isString stays true, format stores that this is a date
|
||||||
property.isDate = true;
|
|
||||||
} else if (ModelUtils.isDateTimeSchema(p)) { // date-time format
|
} else if (ModelUtils.isDateTimeSchema(p)) { // date-time format
|
||||||
property.setIsString(false); // so the templates only see isDateTime
|
// isString stays true, format stores that this is a date-time
|
||||||
property.isDateTime = true;
|
|
||||||
} else if (ModelUtils.isDecimalSchema(p)) { // type: string, format: number
|
} else if (ModelUtils.isDecimalSchema(p)) { // type: string, format: number
|
||||||
property.setIsString(false); // so the templates only see isDecimal
|
// isString stays true, format stores that this is a number
|
||||||
property.isDecimal = true;
|
|
||||||
}
|
}
|
||||||
property.pattern = toRegularExpression(p.getPattern());
|
property.pattern = toRegularExpression(p.getPattern());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected void updatePropertyForNumber(CodegenProperty property, Schema p) {
|
||||||
|
property.setIsNumber(true);
|
||||||
|
// float and double differentiation is determined with format info
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void updatePropertyForInteger(CodegenProperty property, Schema p) {
|
||||||
|
property.isInteger = true;
|
||||||
|
// int32 and int64 differentiation is determined with format info
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void updatePropertyForObject(CodegenProperty property, Schema p) {
|
protected void updatePropertyForObject(CodegenProperty property, Schema p) {
|
||||||
addVarsRequiredVarsAdditionalProps(p, property);
|
addVarsRequiredVarsAdditionalProps(p, property);
|
||||||
|
@ -0,0 +1,27 @@
|
|||||||
|
{{#eq getFormat "uuid"}}
|
||||||
|
schemas.UUIDBase,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq getFormat "date"}}
|
||||||
|
schemas.DateBase,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq getFormat "date-time"}}
|
||||||
|
schemas.DateTimeBase,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq getFormat "number"}}
|
||||||
|
schemas.DecimalBase,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq getFormat "binary"}}
|
||||||
|
schemas.BinaryBase,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq getFormat "int32"}}
|
||||||
|
schemas.Int32Base,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq getFormat "int64"}}
|
||||||
|
schemas.Int64Base,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq getFormat "double"}}
|
||||||
|
schemas.Float32Base,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq getFormat "float"}}
|
||||||
|
schemas.Float64Base,
|
||||||
|
{{/eq}}
|
@ -25,7 +25,7 @@
|
|||||||
{{/or}}
|
{{/or}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if isAnyType}}
|
{{#if isAnyType}}
|
||||||
{{#or isEnum hasVars hasValidation getRequiredVarsMap getHasDiscriminatorWithNonEmptyMapping items}}
|
{{#or isEnum hasVars hasValidation getRequiredVarsMap getHasDiscriminatorWithNonEmptyMapping items getFormat}}
|
||||||
{{> model_templates/schema_composed_or_anytype }}
|
{{> model_templates/schema_composed_or_anytype }}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{> model_templates/var_equals_cls }}
|
{{> model_templates/var_equals_cls }}
|
||||||
|
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
class {{#if this.classname}}{{classname}}{{else}}{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}{{/if}}(
|
class {{#if this.classname}}{{classname}}{{else}}{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}{{/if}}(
|
||||||
{{#if getIsAnyType}}
|
{{#if getIsAnyType}}
|
||||||
|
{{#if getFormat}}
|
||||||
|
{{> model_templates/format_base }}
|
||||||
|
{{/if}}
|
||||||
{{#if composedSchemas}}
|
{{#if composedSchemas}}
|
||||||
schemas.ComposedSchema,
|
schemas.ComposedSchema,
|
||||||
{{else}}
|
{{else}}
|
||||||
@ -9,7 +12,7 @@ class {{#if this.classname}}{{classname}}{{else}}{{#if nameInSnakeCase}}{{name}}
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{#if getHasMultipleTypes}}
|
{{#if getHasMultipleTypes}}
|
||||||
schemas.SchemaTypeCheckerClsFactory(typing.Union[{{#if isNull}}schemas.NoneClass, {{/if}}{{#if isMap}}frozendict.frozendict, {{/if}}{{#if isArray}}tuple, {{/if}}{{#or isString isByteArray isDate isDateTime isDecimal}}str, {{/or}}{{#or isUnboundedInteger isShort isLong isFloat isDouble isNumber}}decimal.Decimal, {{/or}}{{#if isBoolean}}schemas.BoolClass, {{/if}}]),
|
schemas.SchemaTypeCheckerClsFactory(typing.Union[{{#if isNull}}schemas.NoneClass, {{/if}}{{#if isMap}}frozendict.frozendict, {{/if}}{{#if isArray}}tuple, {{/if}}{{#if isString }}str, {{/if}}{{#or isInteger isNumber}}decimal.Decimal, {{/or}}{{#if isBoolean}}schemas.BoolClass, {{/if}}]),
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if composedSchemas}}
|
{{#if composedSchemas}}
|
||||||
schemas.ComposedBase,
|
schemas.ComposedBase,
|
||||||
@ -31,10 +34,13 @@ class {{#if this.classname}}{{classname}}{{else}}{{#if nameInSnakeCase}}{{name}}
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
"""
|
"""
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#or hasValidation composedSchemas getItems additionalProperties getRequiredVarsMap getHasDiscriminatorWithNonEmptyMapping vars}}
|
{{#or hasValidation composedSchemas getItems additionalProperties getRequiredVarsMap getHasDiscriminatorWithNonEmptyMapping vars getFormat}}
|
||||||
|
|
||||||
|
|
||||||
class MetaOapg:
|
class MetaOapg:
|
||||||
|
{{#if getFormat}}
|
||||||
|
format = '{{getFormat}}'
|
||||||
|
{{/if}}
|
||||||
{{#with items}}
|
{{#with items}}
|
||||||
{{#if complexType}}
|
{{#if complexType}}
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
{{#if isAnyType}}dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, {{/if}}{{#if isArray}}tuple, {{/if}}{{#if isMap}}dict, frozendict.frozendict, {{/if}}{{#if isNull}}None, {{/if}}{{#or isString isByteArray}}str, {{/or}}{{#or isUnboundedInteger isShort isLong}}int, {{/or}}{{#or isFloat isDouble}}float, {{/or}}{{#if isNumber}}decimal.Decimal, int, float, {{/if}}{{#if isDate}}date, str, {{/if}}{{#if isUuid}}uuid.UUID, str, {{/if}}{{#if isDateTime}}datetime, str, {{/if}}{{#if isDecimal}}str, {{/if}}{{#if isBoolean}}bool, {{/if}}{{#if isBinary}}bytes, io.FileIO, io.BufferedReader, {{/if}}
|
{{#if isAnyType}}dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, {{/if}}{{#if isArray}}tuple, {{/if}}{{#if isMap}}dict, frozendict.frozendict, {{/if}}{{#if isNull}}None, {{/if}}{{#if isString }}{{#neq format "binary"}}str, {{/neq}}{{#eq format "date"}}date, {{/eq}}{{#eq format "date-time"}}datetime, {{/eq}}{{#eq format "uuid"}}uuid.UUID, {{/eq}}{{#eq format "binary"}}bytes, io.FileIO, io.BufferedReader, {{/eq}}{{/if}}{{#if isInteger}}decimal.Decimal, int, {{/if}}{{#if isNumber}}decimal.Decimal, int, float, {{/if}}{{#if isBoolean}}bool, {{/if}}
|
@ -1 +1 @@
|
|||||||
{{#if this.classname}}{{classname}}{{else}}{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}{{/if}} = {{#or getIsBooleanSchemaTrue getIsBooleanSchemaFalse}}{{#if getIsBooleanSchemaTrue}}schemas.AnyTypeSchema{{else}}schemas.NotAnyTypeSchema{{/if}}{{else}}{{#if complexType}}{{complexType}}{{else}}schemas.{{#if isNullable}}Nullable{{/if}}{{#if getIsNull}}None{{/if}}{{#if isAnyType}}AnyType{{/if}}{{#if isMap}}Dict{{/if}}{{#if isArray}}List{{/if}}{{#if isString}}Str{{/if}}{{#if isByteArray}}Str{{/if}}{{#if getIsUuid}}UUID{{/if}}{{#if isDate}}Date{{/if}}{{#if isDateTime}}DateTime{{/if}}{{#if isDecimal}}Decimal{{/if}}{{#if isUnboundedInteger}}Int{{/if}}{{#if isShort}}Int32{{/if}}{{#if isLong}}Int64{{/if}}{{#if isFloat}}Float32{{/if}}{{#if isDouble}}Float64{{/if}}{{#if isNumber}}Number{{/if}}{{#if isBoolean}}Bool{{/if}}{{#if isBinary}}Binary{{/if}}Schema{{/if}}{{/or}}
|
{{#if this.classname}}{{classname}}{{else}}{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}{{/if}} = {{#or getIsBooleanSchemaTrue getIsBooleanSchemaFalse}}{{#if getIsBooleanSchemaTrue}}schemas.AnyTypeSchema{{else}}schemas.NotAnyTypeSchema{{/if}}{{else}}{{#if complexType}}{{complexType}}{{else}}schemas.{{#if isNullable}}Nullable{{/if}}{{#if getIsNull}}None{{/if}}{{#if isAnyType}}AnyType{{/if}}{{#if isMap}}Dict{{/if}}{{#if isArray}}List{{/if}}{{#if isString}}{{#eq format "date"}}Date{{/eq}}{{#eq format "date-time"}}DateTime{{/eq}}{{#eq format "uuid"}}UUID{{/eq}}{{#eq format "number"}}Decimal{{/eq}}{{#eq format "binary"}}Binary{{/eq}}{{#neq format "date"}}{{#neq format "date-time"}}{{#neq format "uuid"}}{{#neq format "number"}}{{#neq format "binary"}}Str{{/neq}}{{/neq}}{{/neq}}{{/neq}}{{/neq}}{{/if}}{{#if isInteger}}{{#eq format "int32"}}Int32{{/eq}}{{#eq format "int64"}}Int64{{/eq}}{{#neq format "int32"}}{{#neq format "int64"}}Int{{/neq}}{{/neq}}{{/if}}{{#if isNumber}}{{#eq format "float"}}Float32{{/eq}}{{#eq format "double"}}Float64{{/eq}}{{#neq format "float"}}{{#neq format "double"}}Number{{/neq}}{{/neq}}{{/if}}{{#if isBoolean}}Bool{{/if}}Schema{{/if}}{{/or}}
|
||||||
|
@ -5,51 +5,105 @@ schemas.List{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
|||||||
schemas.Dict{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
schemas.Dict{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if isString}}
|
{{#if isString}}
|
||||||
schemas.Str{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
{{#if getHasMultipleTypes}}
|
||||||
|
{{#eq format "date"}}
|
||||||
|
schemas.DateBase,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq format "date-time"}}
|
||||||
|
schemas.DateTimeBase,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq format "uuid"}}
|
||||||
|
schemas.UUIDBase,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq format "number"}}
|
||||||
|
schemas.DecimalBase,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq format "binary"}}
|
||||||
|
schemas.BinaryBase,
|
||||||
|
{{/eq}}
|
||||||
|
schemas.StrBase,
|
||||||
|
{{else}}
|
||||||
|
{{#eq format "date"}}
|
||||||
|
schemas.DateSchema
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq format "date-time"}}
|
||||||
|
schemas.DateTimeSchema
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq format "uuid"}}
|
||||||
|
schemas.UUIDSchema
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq format "number"}}
|
||||||
|
schemas.DecimalSchema
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq format "binary"}}
|
||||||
|
schemas.BinarySchema
|
||||||
|
{{/eq}}
|
||||||
|
{{#neq format "date"}}
|
||||||
|
{{#neq format "date-time"}}
|
||||||
|
{{#neq format "uuid"}}
|
||||||
|
{{#neq format "number"}}
|
||||||
|
{{#neq format "binary"}}
|
||||||
|
schemas.StrSchema
|
||||||
|
{{/neq}}
|
||||||
|
{{/neq}}
|
||||||
|
{{/neq}}
|
||||||
|
{{/neq}}
|
||||||
|
{{/neq}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if isByteArray}}
|
|
||||||
schemas.Str{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
|
||||||
{{/if}}
|
|
||||||
{{#if isUnboundedInteger}}
|
|
||||||
schemas.Int{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if isNumber}}
|
{{#if isNumber}}
|
||||||
schemas.Number{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
{{#if getHasMultipleTypes}}
|
||||||
|
{{#eq format "float"}}
|
||||||
|
schemas.Float32Base,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq format "double"}}
|
||||||
|
schemas.Float64Base,
|
||||||
|
{{/eq}}
|
||||||
|
schemas.NumberBase,
|
||||||
|
{{else}}
|
||||||
|
{{#eq format "float"}}
|
||||||
|
schemas.Float32Schema
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq format "double"}}
|
||||||
|
schemas.Float64Schema
|
||||||
|
{{/eq}}
|
||||||
|
{{#neq format "float"}}
|
||||||
|
{{#neq format "double"}}
|
||||||
|
schemas.NumberSchema
|
||||||
|
{{/neq}}
|
||||||
|
{{/neq}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#isShort}}
|
|
||||||
schemas.Int32{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
|
||||||
{{/isShort}}
|
|
||||||
{{#isLong}}
|
|
||||||
schemas.Int64{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
|
||||||
{{/isLong}}
|
|
||||||
{{#isFloat}}
|
|
||||||
schemas.Float32{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
|
||||||
{{/isFloat}}
|
|
||||||
{{#isDouble}}
|
|
||||||
schemas.Float64{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
|
||||||
{{/isDouble}}
|
|
||||||
{{#if getIsUuid}}
|
|
||||||
schemas.UUID{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if isDate}}
|
{{#if isInteger}}
|
||||||
schemas.Date{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
{{#if getHasMultipleTypes}}
|
||||||
|
{{#eq format "int32"}}
|
||||||
|
schemas.Int32Base,
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq format "int64"}}
|
||||||
|
schemas.Int64Base,
|
||||||
|
{{/eq}}
|
||||||
|
schemas.IntBase,
|
||||||
|
{{else}}
|
||||||
|
{{#eq format "int32"}}
|
||||||
|
schemas.Int32Schema
|
||||||
|
{{/eq}}
|
||||||
|
{{#eq format "int64"}}
|
||||||
|
schemas.Int64Schema
|
||||||
|
{{/eq}}
|
||||||
|
{{#neq format "int32"}}
|
||||||
|
{{#neq format "int64"}}
|
||||||
|
schemas.IntSchema
|
||||||
|
{{/neq}}
|
||||||
|
{{/neq}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if isDateTime}}
|
|
||||||
schemas.DateTime{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
|
||||||
{{/if}}
|
|
||||||
{{#if isDecimal}}
|
|
||||||
schemas.Decimal{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if isBoolean}}
|
{{#if isBoolean}}
|
||||||
schemas.Bool{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
schemas.Bool{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if isBinary}}
|
|
||||||
schemas.Binary{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
|
||||||
{{/if}}
|
|
||||||
{{#if isNull}}
|
{{#if isNull}}
|
||||||
schemas.None{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
schemas.None{{#if getHasMultipleTypes}}Base,{{else}}Schema{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if getHasMultipleTypes}}
|
{{#if getHasMultipleTypes}}
|
||||||
schemas.Schema,
|
schemas.Schema,
|
||||||
schemas.{{#if isNull}}None{{/if}}{{#if isMap}}FrozenDict{{/if}}{{#if isArray}}Tuple{{/if}}{{#or isString isByteArray isDate isDateTime isDecimal}}Str{{/or}}{{#or isUnboundedInteger isShort isLong isFloat isDouble isNumber}}Decimal{{/or}}{{#if isBoolean}}Bool{{/if}}Mixin
|
schemas.{{#if isNull}}None{{/if}}{{#if isMap}}FrozenDict{{/if}}{{#if isArray}}Tuple{{/if}}{{#if isString }}Str{{/if}}{{#or isInteger isNumber}}Decimal{{/or}}{{#if isBoolean}}Bool{{/if}}Mixin
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
@ -18,7 +18,7 @@ Name | Type | Description | Notes
|
|||||||
{{#with additionalProperties}}
|
{{#with additionalProperties}}
|
||||||
{{#unless getIsBooleanSchemaFalse}}
|
{{#unless getIsBooleanSchemaFalse}}
|
||||||
{{#if getIsBooleanSchemaTrue}}
|
{{#if getIsBooleanSchemaTrue}}
|
||||||
**any string name** | dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes | any string name can be used but the value must be the correct type | [optional]
|
**any string name** | {{> model_templates/schema_python_types }} | any string name can be used but the value must be the correct type | [optional]
|
||||||
{{else}}
|
{{else}}
|
||||||
**any string name** | {{#unless complexType}}**{{dataType}}**{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexType}}.md){{/if}} | {{#if description}}{{description}}{{/if}}any string name can be used but the value must be the correct type | {{#unless required}}[optional] {{/unless}}{{#if isReadOnly}}[readonly] {{/if}}{{#if defaultValue}} if omitted the server will use the default value of {{{defaultValue}}}{{/if}}
|
**any string name** | {{#unless complexType}}**{{dataType}}**{{/unless}}{{#if complexType}}[**{{dataType}}**]({{complexType}}.md){{/if}} | {{#if description}}{{description}}{{/if}}any string name can be used but the value must be the correct type | {{#unless required}}[optional] {{/unless}}{{#if isReadOnly}}[readonly] {{/if}}{{#if defaultValue}} if omitted the server will use the default value of {{{defaultValue}}}{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
@ -30,10 +30,10 @@ Name | Type | Description | Notes
|
|||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
{{#if isAnyType}}
|
{{#if isAnyType}}
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[{{> model_templates/schema_python_types }}] | |
|
||||||
{{else}}
|
{{else}}
|
||||||
{{#if hasMultipleTypes}}
|
{{#if hasMultipleTypes}}
|
||||||
typing.Union[{{#if isMap}}dict, frozendict, {{/if}}{{#if isString}}str, {{/if}}{{#if isDate}}date, {{/if}}{{#if isDataTime}}datetime, {{/if}}{{#or isLong isShort isUnboundedInteger}}int, {{/or}}{{#or isFloat isDouble}}float, {{/or}}{{#if isNumber}}Decimal, {{/if}}{{#if isBoolean}}bool, {{/if}}{{#if isNull}}None, {{/if}}{{#if isArray}}list, tuple, {{/if}}{{#if isBinary}}bytes{{/if}}] | | {{#with allowableValues}}{{#if defaultValue}}, {{/if}} must be one of [{{#each enumVars}}{{{value}}}, {{/each}}]{{/with}}
|
typing.Union[{{> model_templates/schema_python_types }}] | | {{#with allowableValues}}{{#if defaultValue}}, {{/if}} must be one of [{{#each enumVars}}{{{value}}}, {{/each}}]{{/with}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{#if isArray}}
|
{{#if isArray}}
|
||||||
{{#unless arrayModelType}}**{{dataType}}**{{/unless}}{{#if arrayModelType}}[**{{dataType}}**]({{arrayModelType}}.md){{/if}} | {{#if description}}{{description}}{{/if}} | {{#if defaultValue}}{{#if hasRequired}} if omitted the server will use the default value of {{/if}}{{#unless hasRequired}}defaults to {{/unless}}{{{defaultValue}}}{{/if}}
|
{{#unless arrayModelType}}**{{dataType}}**{{/unless}}{{#if arrayModelType}}[**{{dataType}}**]({{arrayModelType}}.md){{/if}} | {{#if description}}{{description}}{{/if}} | {{#if defaultValue}}{{#if hasRequired}} if omitted the server will use the default value of {{/if}}{{#unless hasRequired}}defaults to {{/unless}}{{{defaultValue}}}{{/if}}
|
||||||
|
@ -851,7 +851,7 @@ class StrBase(ValidatorBase):
|
|||||||
return super()._validate_oapg(arg, validation_metadata=validation_metadata)
|
return super()._validate_oapg(arg, validation_metadata=validation_metadata)
|
||||||
|
|
||||||
|
|
||||||
class UUIDBase(StrBase):
|
class UUIDBase:
|
||||||
@property
|
@property
|
||||||
@functools.cache
|
@functools.cache
|
||||||
def as_uuid_oapg(self) -> uuid.UUID:
|
def as_uuid_oapg(self) -> uuid.UUID:
|
||||||
@ -917,7 +917,7 @@ class CustomIsoparser(isoparser):
|
|||||||
DEFAULT_ISOPARSER = CustomIsoparser()
|
DEFAULT_ISOPARSER = CustomIsoparser()
|
||||||
|
|
||||||
|
|
||||||
class DateBase(StrBase):
|
class DateBase:
|
||||||
@property
|
@property
|
||||||
@functools.cache
|
@functools.cache
|
||||||
def as_date_oapg(self) -> date:
|
def as_date_oapg(self) -> date:
|
||||||
@ -979,7 +979,7 @@ class DateTimeBase:
|
|||||||
return super()._validate_oapg(arg, validation_metadata=validation_metadata)
|
return super()._validate_oapg(arg, validation_metadata=validation_metadata)
|
||||||
|
|
||||||
|
|
||||||
class DecimalBase(StrBase):
|
class DecimalBase:
|
||||||
"""
|
"""
|
||||||
A class for storing decimals that are sent over the wire as strings
|
A class for storing decimals that are sent over the wire as strings
|
||||||
These schemas must remain based on StrBase rather than NumberBase
|
These schemas must remain based on StrBase rather than NumberBase
|
||||||
@ -1914,7 +1914,7 @@ class NumberSchema(
|
|||||||
return super().__new__(cls, arg, **kwargs)
|
return super().__new__(cls, arg, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
class IntBase(NumberBase):
|
class IntBase:
|
||||||
@property
|
@property
|
||||||
def as_int_oapg(self) -> int:
|
def as_int_oapg(self) -> int:
|
||||||
try:
|
try:
|
||||||
@ -1958,10 +1958,28 @@ class IntSchema(IntBase, NumberSchema):
|
|||||||
|
|
||||||
|
|
||||||
class Int32Base:
|
class Int32Base:
|
||||||
# TODO make this run even if the inheriting class defines these
|
__inclusive_minimum = decimal.Decimal(-2147483648)
|
||||||
class MetaOapg:
|
__inclusive_maximum = decimal.Decimal(2147483647)
|
||||||
inclusive_minimum = decimal.Decimal(-2147483648)
|
|
||||||
inclusive_maximum = decimal.Decimal(2147483647)
|
@classmethod
|
||||||
|
def __validate_format(cls, arg: typing.Optional[decimal.Decimal], validation_metadata: ValidationMetadata):
|
||||||
|
if isinstance(arg, decimal.Decimal) and arg.as_tuple().exponent == 0:
|
||||||
|
if not cls.__inclusive_minimum <= arg <= cls.__inclusive_maximum:
|
||||||
|
raise ApiValueError(
|
||||||
|
"Invalid value '{}' for type int32 at {}".format(arg, validation_metadata.path_to_item)
|
||||||
|
)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def _validate_oapg(
|
||||||
|
cls,
|
||||||
|
arg,
|
||||||
|
validation_metadata: ValidationMetadata,
|
||||||
|
):
|
||||||
|
"""
|
||||||
|
Int32Base _validate_oapg
|
||||||
|
"""
|
||||||
|
cls.__validate_format(arg, validation_metadata=validation_metadata)
|
||||||
|
return super()._validate_oapg(arg, validation_metadata=validation_metadata)
|
||||||
|
|
||||||
|
|
||||||
class Int32Schema(
|
class Int32Schema(
|
||||||
@ -1972,10 +1990,28 @@ class Int32Schema(
|
|||||||
|
|
||||||
|
|
||||||
class Int64Base:
|
class Int64Base:
|
||||||
# TODO make this run even if the inheriting class defines these
|
__inclusive_minimum = decimal.Decimal(-9223372036854775808)
|
||||||
class MetaOapg:
|
__inclusive_maximum = decimal.Decimal(9223372036854775807)
|
||||||
inclusive_minimum = decimal.Decimal(-9223372036854775808)
|
|
||||||
inclusive_maximum = decimal.Decimal(9223372036854775807)
|
@classmethod
|
||||||
|
def __validate_format(cls, arg: typing.Optional[decimal.Decimal], validation_metadata: ValidationMetadata):
|
||||||
|
if isinstance(arg, decimal.Decimal) and arg.as_tuple().exponent == 0:
|
||||||
|
if not cls.__inclusive_minimum <= arg <= cls.__inclusive_maximum:
|
||||||
|
raise ApiValueError(
|
||||||
|
"Invalid value '{}' for type int64 at {}".format(arg, validation_metadata.path_to_item)
|
||||||
|
)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def _validate_oapg(
|
||||||
|
cls,
|
||||||
|
arg,
|
||||||
|
validation_metadata: ValidationMetadata,
|
||||||
|
):
|
||||||
|
"""
|
||||||
|
Int64Base _validate_oapg
|
||||||
|
"""
|
||||||
|
cls.__validate_format(arg, validation_metadata=validation_metadata)
|
||||||
|
return super()._validate_oapg(arg, validation_metadata=validation_metadata)
|
||||||
|
|
||||||
|
|
||||||
class Int64Schema(
|
class Int64Schema(
|
||||||
@ -1986,10 +2022,28 @@ class Int64Schema(
|
|||||||
|
|
||||||
|
|
||||||
class Float32Base:
|
class Float32Base:
|
||||||
# TODO make this run even if the inheriting class defines these
|
__inclusive_minimum = decimal.Decimal(-3.4028234663852886e+38)
|
||||||
class MetaOapg:
|
__inclusive_maximum = decimal.Decimal(3.4028234663852886e+38)
|
||||||
inclusive_minimum = decimal.Decimal(-3.4028234663852886e+38)
|
|
||||||
inclusive_maximum = decimal.Decimal(3.4028234663852886e+38)
|
@classmethod
|
||||||
|
def __validate_format(cls, arg: typing.Optional[decimal.Decimal], validation_metadata: ValidationMetadata):
|
||||||
|
if isinstance(arg, decimal.Decimal):
|
||||||
|
if not cls.__inclusive_minimum <= arg <= cls.__inclusive_maximum:
|
||||||
|
raise ApiValueError(
|
||||||
|
"Invalid value '{}' for type float at {}".format(arg, validation_metadata.path_to_item)
|
||||||
|
)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def _validate_oapg(
|
||||||
|
cls,
|
||||||
|
arg,
|
||||||
|
validation_metadata: ValidationMetadata,
|
||||||
|
):
|
||||||
|
"""
|
||||||
|
Float32Base _validate_oapg
|
||||||
|
"""
|
||||||
|
cls.__validate_format(arg, validation_metadata=validation_metadata)
|
||||||
|
return super()._validate_oapg(arg, validation_metadata=validation_metadata)
|
||||||
|
|
||||||
|
|
||||||
class Float32Schema(
|
class Float32Schema(
|
||||||
@ -1999,16 +2053,32 @@ class Float32Schema(
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_openapi_data_oapg(cls, arg: typing.Union[float, decimal.Decimal], _configuration: typing.Optional[Configuration] = None):
|
def from_openapi_data_oapg(cls, arg: typing.Union[float, decimal.Decimal], _configuration: typing.Optional[Configuration] = None):
|
||||||
# todo check format
|
|
||||||
return super().from_openapi_data_oapg(arg, _configuration=_configuration)
|
return super().from_openapi_data_oapg(arg, _configuration=_configuration)
|
||||||
|
|
||||||
|
|
||||||
class Float64Base:
|
class Float64Base:
|
||||||
# TODO make this run even if the inheriting class defines these
|
__inclusive_minimum = decimal.Decimal(-1.7976931348623157E+308)
|
||||||
class MetaOapg:
|
__inclusive_maximum = decimal.Decimal(1.7976931348623157E+308)
|
||||||
inclusive_minimum = decimal.Decimal(-1.7976931348623157E+308)
|
|
||||||
inclusive_maximum = decimal.Decimal(1.7976931348623157E+308)
|
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def __validate_format(cls, arg: typing.Optional[decimal.Decimal], validation_metadata: ValidationMetadata):
|
||||||
|
if isinstance(arg, decimal.Decimal):
|
||||||
|
if not cls.__inclusive_minimum <= arg <= cls.__inclusive_maximum:
|
||||||
|
raise ApiValueError(
|
||||||
|
"Invalid value '{}' for type double at {}".format(arg, validation_metadata.path_to_item)
|
||||||
|
)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def _validate_oapg(
|
||||||
|
cls,
|
||||||
|
arg,
|
||||||
|
validation_metadata: ValidationMetadata,
|
||||||
|
):
|
||||||
|
"""
|
||||||
|
Float64Base _validate_oapg
|
||||||
|
"""
|
||||||
|
cls.__validate_format(arg, validation_metadata=validation_metadata)
|
||||||
|
return super()._validate_oapg(arg, validation_metadata=validation_metadata)
|
||||||
|
|
||||||
class Float64Schema(
|
class Float64Schema(
|
||||||
Float64Base,
|
Float64Base,
|
||||||
|
@ -2916,4 +2916,25 @@ components:
|
|||||||
minLength: 3
|
minLength: 3
|
||||||
- type: object
|
- type: object
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
maxLength: 5
|
maxLength: 5
|
||||||
|
AnyTypeAndFormat:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
uuid:
|
||||||
|
format: uuid
|
||||||
|
date:
|
||||||
|
format: date
|
||||||
|
date-time:
|
||||||
|
format: date-time
|
||||||
|
number:
|
||||||
|
format: number
|
||||||
|
binary:
|
||||||
|
format: binary
|
||||||
|
int32:
|
||||||
|
format: int32
|
||||||
|
int64:
|
||||||
|
format: int64
|
||||||
|
double:
|
||||||
|
format: double
|
||||||
|
float:
|
||||||
|
format: float
|
@ -3110,7 +3110,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -3186,7 +3186,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -3245,7 +3245,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -3321,7 +3321,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -4342,7 +4342,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -4418,7 +4418,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -4886,7 +4886,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -4962,7 +4962,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -5021,7 +5021,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -5097,7 +5097,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -5156,7 +5156,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -5232,7 +5232,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -7354,7 +7354,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -7430,7 +7430,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -7489,7 +7489,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -7565,7 +7565,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -10089,7 +10089,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -10166,7 +10166,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -10910,7 +10910,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -10986,7 +10986,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -11730,7 +11730,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -11806,7 +11806,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -11865,7 +11865,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -11941,7 +11941,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -12000,7 +12000,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -12076,7 +12076,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
|
@ -72,7 +72,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -148,7 +148,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -207,7 +207,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -283,7 +283,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -342,7 +342,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -418,7 +418,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -477,7 +477,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -553,7 +553,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -612,7 +612,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -688,7 +688,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -747,7 +747,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -823,7 +823,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -882,7 +882,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -958,7 +958,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -1017,7 +1017,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -1093,7 +1093,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -1152,7 +1152,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -1228,7 +1228,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
|
@ -197,7 +197,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -273,7 +273,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -332,7 +332,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -408,7 +408,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
|
@ -1701,7 +1701,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -1774,7 +1774,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -2368,7 +2368,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -2662,7 +2662,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -2735,7 +2735,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -2808,7 +2808,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -3999,7 +3999,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -4072,7 +4072,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -5479,7 +5479,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -5922,7 +5922,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -6366,7 +6366,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -6439,7 +6439,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -6512,7 +6512,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
|
@ -3110,7 +3110,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -3186,7 +3186,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -3245,7 +3245,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -3321,7 +3321,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -4342,7 +4342,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -4418,7 +4418,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -4886,7 +4886,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -4962,7 +4962,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -5021,7 +5021,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -5097,7 +5097,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -5156,7 +5156,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -5232,7 +5232,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -7354,7 +7354,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -7430,7 +7430,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -7489,7 +7489,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -7565,7 +7565,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -10089,7 +10089,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -10166,7 +10166,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -10910,7 +10910,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -10986,7 +10986,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -11730,7 +11730,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -11806,7 +11806,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -11865,7 +11865,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -11941,7 +11941,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -12000,7 +12000,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -12076,7 +12076,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
|
@ -760,7 +760,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -837,7 +837,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
|
@ -473,7 +473,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
### Return Types, Responses
|
### Return Types, Responses
|
||||||
|
|
||||||
@ -549,7 +549,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
|
@ -1466,7 +1466,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -1528,7 +1528,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -2031,7 +2031,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -2281,7 +2281,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -2343,7 +2343,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -2405,7 +2405,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -3412,7 +3412,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -3474,7 +3474,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -4668,7 +4668,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -5045,7 +5045,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -5421,7 +5421,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -5483,7 +5483,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
@ -5545,7 +5545,7 @@ headers | Unset | headers were not defined |
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
|
|
||||||
**bool, date, datetime, dict, float, int, list, str, none_type**
|
**bool, date, datetime, dict, float, int, list, str, none_type**
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Type | Description | Notes
|
Type | Description | Notes
|
||||||
------------- | ------------- | -------------
|
------------- | ------------- | -------------
|
||||||
typing.Union[dict, frozendict, str, date, datetime, int, float, bool, Decimal, None, list, tuple, bytes] | |
|
typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ] | |
|
||||||
|
|
||||||
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -70,8 +70,8 @@ class AdditionalpropertiesAllowsASchemaWhichShouldValidate(
|
|||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, ],
|
*args: typing.Union[dict, frozendict.frozendict, ],
|
||||||
foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
||||||
bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[MetaOapg.additional_properties, bool, ],
|
**kwargs: typing.Union[MetaOapg.additional_properties, bool, ],
|
||||||
) -> 'AdditionalpropertiesAllowsASchemaWhichShouldValidate':
|
) -> 'AdditionalpropertiesAllowsASchemaWhichShouldValidate':
|
||||||
|
@ -70,8 +70,8 @@ class AdditionalpropertiesAllowsASchemaWhichShouldValidate(
|
|||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, ],
|
*args: typing.Union[dict, frozendict.frozendict, ],
|
||||||
foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
||||||
bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[MetaOapg.additional_properties, bool, ],
|
**kwargs: typing.Union[MetaOapg.additional_properties, bool, ],
|
||||||
) -> 'AdditionalpropertiesAllowsASchemaWhichShouldValidate':
|
) -> 'AdditionalpropertiesAllowsASchemaWhichShouldValidate':
|
||||||
|
@ -71,9 +71,9 @@ class AdditionalpropertiesAreAllowedByDefault(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
||||||
bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AdditionalpropertiesAreAllowedByDefault':
|
) -> 'AdditionalpropertiesAreAllowedByDefault':
|
||||||
|
@ -71,9 +71,9 @@ class AdditionalpropertiesAreAllowedByDefault(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
||||||
bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
bar: typing.Union[MetaOapg.properties.bar, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AdditionalpropertiesAreAllowedByDefault':
|
) -> 'AdditionalpropertiesAreAllowedByDefault':
|
||||||
|
@ -72,8 +72,8 @@ class AdditionalpropertiesShouldNotLookInApplicators(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'all_of_0':
|
) -> 'all_of_0':
|
||||||
@ -110,7 +110,7 @@ class AdditionalpropertiesShouldNotLookInApplicators(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[MetaOapg.additional_properties, bool, ],
|
**kwargs: typing.Union[MetaOapg.additional_properties, bool, ],
|
||||||
) -> 'AdditionalpropertiesShouldNotLookInApplicators':
|
) -> 'AdditionalpropertiesShouldNotLookInApplicators':
|
||||||
|
@ -72,8 +72,8 @@ class AdditionalpropertiesShouldNotLookInApplicators(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
foo: typing.Union[MetaOapg.properties.foo, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, schemas.Unset] = schemas.unset,
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'all_of_0':
|
) -> 'all_of_0':
|
||||||
@ -110,7 +110,7 @@ class AdditionalpropertiesShouldNotLookInApplicators(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[MetaOapg.additional_properties, bool, ],
|
**kwargs: typing.Union[MetaOapg.additional_properties, bool, ],
|
||||||
) -> 'AdditionalpropertiesShouldNotLookInApplicators':
|
) -> 'AdditionalpropertiesShouldNotLookInApplicators':
|
||||||
|
@ -76,8 +76,8 @@ class Allof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
bar: typing.Union[MetaOapg.properties.bar, int, ],
|
bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'all_of_0':
|
) -> 'all_of_0':
|
||||||
@ -131,7 +131,7 @@ class Allof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
foo: typing.Union[MetaOapg.properties.foo, str, ],
|
foo: typing.Union[MetaOapg.properties.foo, str, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
@ -163,7 +163,7 @@ class Allof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'Allof':
|
) -> 'Allof':
|
||||||
|
@ -76,8 +76,8 @@ class Allof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
bar: typing.Union[MetaOapg.properties.bar, int, ],
|
bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'all_of_0':
|
) -> 'all_of_0':
|
||||||
@ -131,7 +131,7 @@ class Allof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
foo: typing.Union[MetaOapg.properties.foo, str, ],
|
foo: typing.Union[MetaOapg.properties.foo, str, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
@ -163,7 +163,7 @@ class Allof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'Allof':
|
) -> 'Allof':
|
||||||
|
@ -46,7 +46,7 @@ class AllofCombinedWithAnyofOneof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'all_of_0':
|
) -> 'all_of_0':
|
||||||
@ -69,7 +69,7 @@ class AllofCombinedWithAnyofOneof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'one_of_0':
|
) -> 'one_of_0':
|
||||||
@ -92,7 +92,7 @@ class AllofCombinedWithAnyofOneof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'any_of_0':
|
) -> 'any_of_0':
|
||||||
@ -151,7 +151,7 @@ class AllofCombinedWithAnyofOneof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofCombinedWithAnyofOneof':
|
) -> 'AllofCombinedWithAnyofOneof':
|
||||||
|
@ -45,7 +45,7 @@ class AllofCombinedWithAnyofOneof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'all_of_0':
|
) -> 'all_of_0':
|
||||||
@ -67,7 +67,7 @@ class AllofCombinedWithAnyofOneof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'one_of_0':
|
) -> 'one_of_0':
|
||||||
@ -89,7 +89,7 @@ class AllofCombinedWithAnyofOneof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'any_of_0':
|
) -> 'any_of_0':
|
||||||
@ -148,7 +148,7 @@ class AllofCombinedWithAnyofOneof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofCombinedWithAnyofOneof':
|
) -> 'AllofCombinedWithAnyofOneof':
|
||||||
|
@ -46,7 +46,7 @@ class AllofSimpleTypes(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'all_of_0':
|
) -> 'all_of_0':
|
||||||
@ -69,7 +69,7 @@ class AllofSimpleTypes(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'all_of_1':
|
) -> 'all_of_1':
|
||||||
@ -99,7 +99,7 @@ class AllofSimpleTypes(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofSimpleTypes':
|
) -> 'AllofSimpleTypes':
|
||||||
|
@ -45,7 +45,7 @@ class AllofSimpleTypes(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'all_of_0':
|
) -> 'all_of_0':
|
||||||
@ -67,7 +67,7 @@ class AllofSimpleTypes(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'all_of_1':
|
) -> 'all_of_1':
|
||||||
@ -97,7 +97,7 @@ class AllofSimpleTypes(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofSimpleTypes':
|
) -> 'AllofSimpleTypes':
|
||||||
|
@ -84,7 +84,7 @@ class AllofWithBaseSchema(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
foo: typing.Union[MetaOapg.properties.foo, str, ],
|
foo: typing.Union[MetaOapg.properties.foo, str, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
@ -139,7 +139,7 @@ class AllofWithBaseSchema(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
baz: typing.Union[MetaOapg.properties.baz, None, ],
|
baz: typing.Union[MetaOapg.properties.baz, None, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
@ -194,8 +194,8 @@ class AllofWithBaseSchema(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
bar: typing.Union[MetaOapg.properties.bar, int, ],
|
bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofWithBaseSchema':
|
) -> 'AllofWithBaseSchema':
|
||||||
|
@ -84,7 +84,7 @@ class AllofWithBaseSchema(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
foo: typing.Union[MetaOapg.properties.foo, str, ],
|
foo: typing.Union[MetaOapg.properties.foo, str, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
@ -139,7 +139,7 @@ class AllofWithBaseSchema(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
baz: typing.Union[MetaOapg.properties.baz, None, ],
|
baz: typing.Union[MetaOapg.properties.baz, None, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
@ -194,8 +194,8 @@ class AllofWithBaseSchema(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
bar: typing.Union[MetaOapg.properties.bar, int, ],
|
bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofWithBaseSchema':
|
) -> 'AllofWithBaseSchema':
|
||||||
|
@ -53,7 +53,7 @@ class AllofWithOneEmptySchema(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofWithOneEmptySchema':
|
) -> 'AllofWithOneEmptySchema':
|
||||||
|
@ -53,7 +53,7 @@ class AllofWithOneEmptySchema(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofWithOneEmptySchema':
|
) -> 'AllofWithOneEmptySchema':
|
||||||
|
@ -55,7 +55,7 @@ class AllofWithTheFirstEmptySchema(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofWithTheFirstEmptySchema':
|
) -> 'AllofWithTheFirstEmptySchema':
|
||||||
|
@ -55,7 +55,7 @@ class AllofWithTheFirstEmptySchema(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofWithTheFirstEmptySchema':
|
) -> 'AllofWithTheFirstEmptySchema':
|
||||||
|
@ -55,7 +55,7 @@ class AllofWithTheLastEmptySchema(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofWithTheLastEmptySchema':
|
) -> 'AllofWithTheLastEmptySchema':
|
||||||
|
@ -55,7 +55,7 @@ class AllofWithTheLastEmptySchema(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofWithTheLastEmptySchema':
|
) -> 'AllofWithTheLastEmptySchema':
|
||||||
|
@ -55,7 +55,7 @@ class AllofWithTwoEmptySchemas(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofWithTwoEmptySchemas':
|
) -> 'AllofWithTwoEmptySchemas':
|
||||||
|
@ -55,7 +55,7 @@ class AllofWithTwoEmptySchemas(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AllofWithTwoEmptySchemas':
|
) -> 'AllofWithTwoEmptySchemas':
|
||||||
|
@ -47,7 +47,7 @@ class Anyof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'any_of_1':
|
) -> 'any_of_1':
|
||||||
@ -77,7 +77,7 @@ class Anyof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'Anyof':
|
) -> 'Anyof':
|
||||||
|
@ -46,7 +46,7 @@ class Anyof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'any_of_1':
|
) -> 'any_of_1':
|
||||||
@ -76,7 +76,7 @@ class Anyof(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'Anyof':
|
) -> 'Anyof':
|
||||||
|
@ -76,8 +76,8 @@ class AnyofComplexTypes(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
bar: typing.Union[MetaOapg.properties.bar, int, ],
|
bar: typing.Union[MetaOapg.properties.bar, decimal.Decimal, int, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'any_of_0':
|
) -> 'any_of_0':
|
||||||
@ -131,7 +131,7 @@ class AnyofComplexTypes(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
foo: typing.Union[MetaOapg.properties.foo, str, ],
|
foo: typing.Union[MetaOapg.properties.foo, str, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
@ -163,7 +163,7 @@ class AnyofComplexTypes(
|
|||||||
|
|
||||||
def __new__(
|
def __new__(
|
||||||
cls,
|
cls,
|
||||||
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes, ],
|
*args: typing.Union[dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, ],
|
||||||
_configuration: typing.Optional[schemas.Configuration] = None,
|
_configuration: typing.Optional[schemas.Configuration] = None,
|
||||||
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
**kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes],
|
||||||
) -> 'AnyofComplexTypes':
|
) -> 'AnyofComplexTypes':
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user