Example #1
0
    def construct_artist(client, node):
        attribute_map = {
            'key': 'parentKey',
            'ratingKey': 'parentRatingKey',
            'title': 'parentTitle',
            'thumb': 'parentThumb'
        }

        return Artist.construct(client, node, attribute_map, child=True)
Example #2
0
    def construct_artist(client, node):
        attribute_map = {
            'key':          'parentKey',
            'ratingKey':    'parentRatingKey',

            'title':        'parentTitle',
            'thumb':        'parentThumb'
        }

        return Artist.construct(client, node, attribute_map, child=True)
Example #3
0
    def construct_artist(client, node):
        attribute_map = {'title': 'grandparentTitle'}

        return Artist.construct(client, node, attribute_map, child=True)
Example #4
0
    def construct_artist(client, node):
        attribute_map = {
            'title': 'grandparentTitle'
        }

        return Artist.construct(client, node, attribute_map, child=True)