Skip to content

Receiver

Overview

Receiver(id, formatted_name, email, name, cell)

DoesNotExist

The requested object does not exist

Source

server/vueda/vdq/models.py

MultipleObjectsReturned

The query returned multiple objects when only one was expected.

Source

server/vueda/vdq/models.py

email

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

Signature

email(unknown)

Parameters

NameTypeRequiredDescription
unknownyes

formatted_name

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

Signature

formatted_name(unknown)

Parameters

NameTypeRequiredDescription
unknownyes

id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

Signature

id(unknown)

Parameters

NameTypeRequiredDescription
unknownyes

name

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

Signature

name(unknown)

Parameters

NameTypeRequiredDescription
unknownyes

pgh_event_model

A descriptor for accessing the pgh_event_model field on a tracked model

Signature

pgh_event_model(unknown)

Parameters

NameTypeRequiredDescription
unknownyes

_meta

_vueda_options

anymail_queue_item_receiver_ccs

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example::

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

Parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

anymail_queue_item_receiver_reply_tos

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example::

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

Parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

anymail_queue_item_receiver_tos

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example::

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

Parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

anymail_queue_items_cc

Accessor to the related objects manager on the forward and reverse sides of a many-to-many relation.

In the example::

class Pizza(Model):
    toppings = ManyToManyField(Topping, related_name='pizzas')

Pizza.toppings and Topping.pizzas are ManyToManyDescriptor instances.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

anymail_queue_items_reply_to

Accessor to the related objects manager on the forward and reverse sides of a many-to-many relation.

In the example::

class Pizza(Model):
    toppings = ManyToManyField(Topping, related_name='pizzas')

Pizza.toppings and Topping.pizzas are ManyToManyDescriptor instances.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

anymail_queue_items_to

Accessor to the related objects manager on the forward and reverse sides of a many-to-many relation.

In the example::

class Pizza(Model):
    toppings = ManyToManyField(Topping, related_name='pizzas')

Pizza.toppings and Topping.pizzas are ManyToManyDescriptor instances.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

cell

The descriptor for the phone number attribute on the model instance. Returns a PhoneNumber when accessed so you can do stuff like::

>>> instance.phone_number.as_international

Assigns a phone number object on assignment so you can do::

>>> instance.phone_number = PhoneNumber(...)

or,

>>> instance.phone_number = '+414204242'

events

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example::

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

Parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

pgh_event_models

queue_items

Accessor to the related objects manager on the reverse side of a many-to-one relation.

In the example::

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

Parent.children is a ReverseManyToOneDescriptor instance.

Most of the implementation is delegated to a dynamically defined manager class built by create_forward_many_to_many_manager() defined below.

Source

server/vueda/vdq/models.py:75

Documents matching: server v3.0.0a1.post1client v3.0.0-alpha.2