Skip to content

Commit

Permalink
Reftime and Fcstsec methods in GetGridInfoRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
mjames-upc committed Apr 2, 2016
1 parent a6b9383 commit b9a9ac7
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ class GetGridInfoRequest(object):
def __init__(self):
self.pluginName = None
self.modelId = None
self.reftime = None
self.fcstsec = None

def getPluginName(self):
return self.pluginName
Expand All @@ -19,3 +21,15 @@ def getModelId(self):
def setModelId(self, 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

0 comments on commit b9a9ac7

Please sign in to comment.