Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
# coding: utf-8
from __future__ import (
    absolute_import,
    print_function,
    unicode_literals,
)

from pydocx.models import XmlModel, XmlCollection


class Fallback(XmlModel):
    XML_TAG = 'Fallback'

    # It would be better to refer to the grandparent's children XmlCollection
    # lazily. The problem is that we don't have a good way to represent lazy
    # fields, nor do we have a way for those fields to reference their parents
    # before they are initialized with content.
    children = XmlCollection(allow_all_children=True)