def __init__(
self, token=None, bucket=None, operation=None, expires=None,
encryptionKey=None, id=None,
):
self.token = token
self.bucket = Bucket(id=bucket)
self.operation = operation
self.id = id
if expires is not None:
self.expires = datetime.fromtimestamp(
strict_rfc3339.rfc3339_to_timestamp(expires))
else:
self.expires = None
self.encryptionKey = encryptionKey
评论列表
文章目录