mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 20:28:46 -05:00
118 lines
3.2 KiB
TypeScript
118 lines
3.2 KiB
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Tandoor
|
|
* Tandoor API Docs
|
|
*
|
|
* The version of the OpenAPI document: 0.0.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
import { mapValues } from '../runtime';
|
|
import type { PropertyTypeRequest } from './PropertyTypeRequest';
|
|
import {
|
|
PropertyTypeRequestFromJSON,
|
|
PropertyTypeRequestFromJSONTyped,
|
|
PropertyTypeRequestToJSON,
|
|
} from './PropertyTypeRequest';
|
|
|
|
/**
|
|
* Moves `UniqueValidator`'s from the validation stage to the save stage.
|
|
* It solves the problem with nested validation for unique fields on update.
|
|
*
|
|
* If you want more details, you can read related issues and articles:
|
|
* https://github.com/beda-software/drf-writable-nested/issues/1
|
|
* http://www.django-rest-framework.org/api-guide/validators/#updating-nested-serializers
|
|
*
|
|
* Example of usage:
|
|
* ```
|
|
* class Child(models.Model):
|
|
* field = models.CharField(unique=True)
|
|
*
|
|
*
|
|
* class Parent(models.Model):
|
|
* child = models.ForeignKey('Child')
|
|
*
|
|
*
|
|
* class ChildSerializer(UniqueFieldsMixin, serializers.ModelSerializer):
|
|
* class Meta:
|
|
* model = Child
|
|
*
|
|
*
|
|
* class ParentSerializer(NestedUpdateMixin, serializers.ModelSerializer):
|
|
* child = ChildSerializer()
|
|
*
|
|
* class Meta:
|
|
* model = Parent
|
|
* ```
|
|
*
|
|
* Note: `UniqueFieldsMixin` must be applied only on the serializer
|
|
* which has unique fields.
|
|
*
|
|
* Note: When you are using both mixins
|
|
* (`UniqueFieldsMixin` and `NestedCreateMixin` or `NestedUpdateMixin`)
|
|
* you should put `UniqueFieldsMixin` ahead.
|
|
* @export
|
|
* @interface PatchedPropertyRequest
|
|
*/
|
|
export interface PatchedPropertyRequest {
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof PatchedPropertyRequest
|
|
*/
|
|
propertyAmount?: string;
|
|
/**
|
|
*
|
|
* @type {PropertyTypeRequest}
|
|
* @memberof PatchedPropertyRequest
|
|
*/
|
|
propertyType?: PropertyTypeRequest;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof PatchedPropertyRequest
|
|
*/
|
|
id?: number;
|
|
}
|
|
|
|
/**
|
|
* Check if a given object implements the PatchedPropertyRequest interface.
|
|
*/
|
|
export function instanceOfPatchedPropertyRequest(value: object): boolean {
|
|
return true;
|
|
}
|
|
|
|
export function PatchedPropertyRequestFromJSON(json: any): PatchedPropertyRequest {
|
|
return PatchedPropertyRequestFromJSONTyped(json, false);
|
|
}
|
|
|
|
export function PatchedPropertyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedPropertyRequest {
|
|
if (json == null) {
|
|
return json;
|
|
}
|
|
return {
|
|
|
|
'propertyAmount': json['property_amount'] == null ? undefined : json['property_amount'],
|
|
'propertyType': json['property_type'] == null ? undefined : PropertyTypeRequestFromJSON(json['property_type']),
|
|
'id': json['id'] == null ? undefined : json['id'],
|
|
};
|
|
}
|
|
|
|
export function PatchedPropertyRequestToJSON(value?: PatchedPropertyRequest | null): any {
|
|
if (value == null) {
|
|
return value;
|
|
}
|
|
return {
|
|
|
|
'property_amount': value['propertyAmount'],
|
|
'property_type': PropertyTypeRequestToJSON(value['propertyType']),
|
|
'id': value['id'],
|
|
};
|
|
}
|
|
|