|  |  | 
django.db.models.fields.Field(__builtin__.object)
FlowThreeLeggedField
OAuthCredentialsField
 
 
| class FlowThreeLeggedField(django.db.models.fields.Field)
 |  |  |  | Method resolution order:FlowThreeLeggedFielddjango.db.models.fields.Field__builtin__.object
 Methods defined here:
 
 contribute_to_class(self, cls, name)
 db_type = inner(*args, **kwargs)
 get_db_prep_lookup = inner(*args, **kwargs)
 get_db_prep_save = inner(*args, **kwargs)
 get_db_prep_value = inner(*args, **kwargs)
 to_python(self, value)
 Data and other attributes defined here:
 
 __metaclass__ = <class 'django.db.models.fields.subclassing.SubfieldBase'>A metaclass for custom Field subclasses. This ensures the model's attributehas the descriptor protocol attached to it.
 Methods inherited from django.db.models.fields.Field:
 
 __cmp__(self, other)
 __deepcopy__(self, memodict)
 __init__(self, verbose_name=None, name=None, primary_key=False, max_length=None, unique=False, blank=False, null=False, db_index=False, rel=None, default=<class django.db.models.fields.NOT_PROVIDED>, editable=True, serialize=True, unique_for_date=None, unique_for_month=None, unique_for_year=None, choices=None, help_text='', db_column=None, db_tablespace=None, auto_created=False, validators=[], error_messages=None)
 bind(self, fieldmapping, original, bound_field_class)
 clean(self, value, model_instance)Convert the value's type and run validation. Validation errors from to_pythonand validate are propagated. The correct value is returned if no error is
 raised.
 formfield(self, form_class=<class 'django.forms.fields.CharField'>, **kwargs)Returns a django.forms.Field instance for this database Field.
 get_attname(self)
 get_attname_column(self)
 get_cache_name(self)
 get_choices(self, include_blank=True, blank_choice=[('', '---------')])Returns choices with a default blank choices included, for useas SelectField choices for this field.
 get_choices_default(self)
 get_default(self)Returns the default value for this field.
 get_flatchoices(self, include_blank=True, blank_choice=[('', '---------')])Returns flattened choices with a default blank choice included.
 get_internal_type(self)
 get_prep_lookup(self, lookup_type, value)Perform preliminary non-db specific lookup checks and conversions
 get_prep_value(self, value)Perform preliminary non-db specific value checks and conversions.
 get_validator_unique_lookup_type(self)
 has_default(self)Returns a boolean of whether this field has a default value.
 pre_save(self, model_instance, add)Returns field's value just before saving.
 run_validators(self, value)
 save_form_data(self, instance, data)
 set_attributes_from_name(self, name)
 validate(self, value, model_instance)Validates value and throws ValidationError. Subclasses should overridethis to provide validation logic.
 value_from_object(self, obj)Returns the value of this field in the given model instance.
 value_to_string(self, obj)Returns a string value of this field from the passed obj.This is used by the serialization framework.
 Data descriptors inherited from django.db.models.fields.Field:
 
 __dict__dictionary for instance variables (if defined)
 __weakref__list of weak references to the object (if defined)
 choices
 description
 flatchoicesFlattened version of choices tuple.
 unique
 Data and other attributes inherited from django.db.models.fields.Field:
 
 auto_creation_counter = -1
 creation_counter = 0
 default_error_messages = {'blank': <django.utils.functional.__proxy__ object>, 'invalid_choice': <django.utils.functional.__proxy__ object>, 'null': <django.utils.functional.__proxy__ object>}
 default_validators = []
 empty_strings_allowed = True
 |  
 
| class OAuthCredentialsField(django.db.models.fields.Field)
 |  |  |  | Method resolution order:OAuthCredentialsFielddjango.db.models.fields.Field__builtin__.object
 Methods defined here:
 
 contribute_to_class(self, cls, name)
 db_type = inner(*args, **kwargs)
 get_db_prep_lookup = inner(*args, **kwargs)
 get_db_prep_save = inner(*args, **kwargs)
 get_db_prep_value = inner(*args, **kwargs)
 to_python(self, value)
 Data and other attributes defined here:
 
 __metaclass__ = <class 'django.db.models.fields.subclassing.SubfieldBase'>A metaclass for custom Field subclasses. This ensures the model's attributehas the descriptor protocol attached to it.
 Methods inherited from django.db.models.fields.Field:
 
 __cmp__(self, other)
 __deepcopy__(self, memodict)
 __init__(self, verbose_name=None, name=None, primary_key=False, max_length=None, unique=False, blank=False, null=False, db_index=False, rel=None, default=<class django.db.models.fields.NOT_PROVIDED>, editable=True, serialize=True, unique_for_date=None, unique_for_month=None, unique_for_year=None, choices=None, help_text='', db_column=None, db_tablespace=None, auto_created=False, validators=[], error_messages=None)
 bind(self, fieldmapping, original, bound_field_class)
 clean(self, value, model_instance)Convert the value's type and run validation. Validation errors from to_pythonand validate are propagated. The correct value is returned if no error is
 raised.
 formfield(self, form_class=<class 'django.forms.fields.CharField'>, **kwargs)Returns a django.forms.Field instance for this database Field.
 get_attname(self)
 get_attname_column(self)
 get_cache_name(self)
 get_choices(self, include_blank=True, blank_choice=[('', '---------')])Returns choices with a default blank choices included, for useas SelectField choices for this field.
 get_choices_default(self)
 get_default(self)Returns the default value for this field.
 get_flatchoices(self, include_blank=True, blank_choice=[('', '---------')])Returns flattened choices with a default blank choice included.
 get_internal_type(self)
 get_prep_lookup(self, lookup_type, value)Perform preliminary non-db specific lookup checks and conversions
 get_prep_value(self, value)Perform preliminary non-db specific value checks and conversions.
 get_validator_unique_lookup_type(self)
 has_default(self)Returns a boolean of whether this field has a default value.
 pre_save(self, model_instance, add)Returns field's value just before saving.
 run_validators(self, value)
 save_form_data(self, instance, data)
 set_attributes_from_name(self, name)
 validate(self, value, model_instance)Validates value and throws ValidationError. Subclasses should overridethis to provide validation logic.
 value_from_object(self, obj)Returns the value of this field in the given model instance.
 value_to_string(self, obj)Returns a string value of this field from the passed obj.This is used by the serialization framework.
 Data descriptors inherited from django.db.models.fields.Field:
 
 __dict__dictionary for instance variables (if defined)
 __weakref__list of weak references to the object (if defined)
 choices
 description
 flatchoicesFlattened version of choices tuple.
 unique
 Data and other attributes inherited from django.db.models.fields.Field:
 
 auto_creation_counter = -1
 creation_counter = 0
 default_error_messages = {'blank': <django.utils.functional.__proxy__ object>, 'invalid_choice': <django.utils.functional.__proxy__ object>, 'null': <django.utils.functional.__proxy__ object>}
 default_validators = []
 empty_strings_allowed = True
 |  |