mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 14:57:56 -05:00
Reftime and Fcstsec methods in GetGridInfoRequest
This commit is contained in:
parent
a6b938314a
commit
b9a9ac784e
1 changed files with 14 additions and 0 deletions
|
@ -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
|
||||
|
@ -19,3 +21,15 @@ class GetGridInfoRequest(object):
|
|||
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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue