
Story: 2008529 Task: 41688 Signed-off-by: Bin Yang <bin.yang@windriver.com> Change-Id: Ib276520605cc624a9976f804a1721ba2c5909403
11 lines
275 B
Python
11 lines
275 B
Python
#coding=utf-8
|
|
|
|
from wsme import types as wtypes
|
|
from locationservicesdk.model.dto.resourcetype import EnumResourceType
|
|
|
|
class LocationInfo(wtypes.Base):
|
|
NodeName = wtypes.text
|
|
PodIP = wtypes.text
|
|
Timestamp = float
|
|
ResourceTypes = [EnumResourceType]
|