Reftime and Fcstsec methods in GetGridInfoRequest

This commit is contained in:
mjames-upc 2016-04-01 19:12:11 -05:00
parent a6b938314a
commit b9a9ac784e

View file

@ -6,6 +6,8 @@ class GetGridInfoRequest(object):
def __init__(self): def __init__(self):
self.pluginName = None self.pluginName = None
self.modelId = None self.modelId = None
self.reftime = None
self.fcstsec = None
def getPluginName(self): def getPluginName(self):
return self.pluginName return self.pluginName
@ -19,3 +21,15 @@ class GetGridInfoRequest(object):
def setModelId(self, modelId): def setModelId(self, modelId):
self.modelId = modelId self.modelId = modelId
def getReftime(self):
return self.reftime
def setReftime(self, reftime):
self.reftime = reftime
def getFcstsec(self):
return self.fcstsec
def setFcstsec(self, fcstsec):
self.fcstsec = fcstsec