# -*- coding: utf-8 -*-
[docs]class ArchivalObjectStatusEnum(object):
"""Implementation of the 'archivalObjectStatus' enum.
TODO: type enum description here.
Attributes:
KINPROGRESS: TODO: type description here.
KSUCCESSFUL: TODO: type description here.
KFAILED: TODO: type description here.
KWAITINGFORNEXTATTEMPT: TODO: type description here.
KWARNING: TODO: type description here.
"""
KINPROGRESS = 'kInProgress'
KSUCCESSFUL = 'kSuccessful'
KFAILED = 'kFailed'
KWAITINGFORNEXTATTEMPT = 'kWaitingForNextAttempt'
KWARNING = 'kWarning'