Skip to content

flywheel.models.custom_form

CustomForm

Bases: object

defaults property writable

Gets the defaults of this CustomForm.

Returns:

Type Description
object

The defaults of this CustomForm

description property writable

Gets the description of this CustomForm.

Returns:

Type Description
str

The description of this CustomForm

fields property writable

Gets the fields of this CustomForm.

Returns:

Type Description
list[CustomField]

The fields of this CustomForm

title property writable

Gets the title of this CustomForm.

Returns:

Type Description
str

The title of this CustomForm

__contains__(key)

Checks if the given value is a key in this object

__eq__(other)

Returns true if both objects are equal

__getitem__(key)

Returns the value of key

__init__(title=None, description=None, defaults=None, fields=None)

CustomForm - a model defined in Swagger

Parameters:

Name Type Description Default
title (str, optional)

, defaults to None

None
description (str, optional)

, defaults to None

None
defaults (object, optional)

, defaults to None

None
fields (list[CustomField], optional)

, defaults to None

None

__ne__(other)

Returns true if both objects are not equal

__repr__()

For print and pprint

__setitem__(key, value)

Sets the value of key

get(key, default=None)

Get the value of the provided json property, or default

items()

Returns the list of json property to value mapping

keys()

Returns the list of json properties in the object

positional_to_model(value) staticmethod

Converts a positional argument to a model value

return_value()

Unwraps return value from model

to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

values()

Returns the list of values in the object