Source code for LOGS.Entities.FormatMethods

from LOGS.Auxiliary.Decorators import Endpoint
from LOGS.Entities.FormatMethod import FormatMethod
from LOGS.Entities.FormatMethodRequestParameter import FormatMethodRequestParameter
from LOGS.Entity.EntityIterator import EntityIterator


[docs] @Endpoint("parser_methods") class FormatMethods(EntityIterator[FormatMethod, FormatMethodRequestParameter]): """LOGS connected class FromatMethod iterator""" _generatorType = FormatMethod _parameterType = FormatMethodRequestParameter