You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
537 B
22 lines
537 B
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
flowroutenumbersandmessaging.decorators
|
|
|
|
This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io )
|
|
"""
|
|
|
|
class lazy_property(object):
|
|
|
|
"""A decorator class for lazy instantiation."""
|
|
|
|
def __init__(self, fget):
|
|
self.fget = fget
|
|
self.func_name = fget.__name__
|
|
|
|
def __get__(self, obj, cls):
|
|
if obj is None:
|
|
return None
|
|
value = self.fget(obj)
|
|
setattr(obj, self.func_name, value)
|
|
return value
|
|
|