Source code for sdk.lusid.models.change_history_action

# coding: utf-8

"""
    LUSID API

    FINBOURNE Technology  # noqa: E501

    Contact: info@finbourne.com
    Generated by OpenAPI Generator (https://openapi-generator.tech)

    Do not edit the class manually.
"""


import json
import pprint
import re  # noqa: F401
from aenum import Enum, no_arg





[docs] class ChangeHistoryAction(str, Enum): """ ChangeHistoryAction """ """ allowed enum values """ CREATE = 'Create' UPDATE = 'Update' DELETE = 'Delete'
[docs] @classmethod def from_json(cls, json_str: str) -> ChangeHistoryAction: """Create an instance of ChangeHistoryAction from a JSON string""" return ChangeHistoryAction(json.loads(json_str))