oss2/xml_utils.py [2409:2420]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    result.continuation_token = _find_tag_with_default(root, 'ContinuationToken', None)
    result.next_continuation_token = _find_tag_with_default(root, 'NextContinuationToken', None)
    result.is_truncated = _find_bool(root, 'IsTruncated')

    for qos_info in root.findall('RequesterQoSInfo'):
        tmp = RequesterQoSInfo()
        tmp.requester = _find_tag_with_default(qos_info, 'Requester', None)
        tmp.qos_configuration = parse_qos_configuration(qos_info.find('QoSConfiguration'))

        result.requester_qos_info.append(tmp)

    return result
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



