File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
generated/pyfirebase/pyfirebase_mapswipe Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -270,6 +270,10 @@ FbProjectUpdateInput:
270270 isFeatured :
271271 type : boolean
272272 lookFor :
273+ optional : true
274+ type : string
275+ projectInstruction :
276+ optional : true
273277 type : string
274278 name :
275279 type : string
Original file line number Diff line number Diff line change @@ -301,7 +301,8 @@ class FbProjectUpdateInput(TypesyncModel):
301301
302302 image : str | TypesyncUndefined | None = UNDEFINED
303303 isFeatured : bool
304- lookFor : str
304+ lookFor : str | TypesyncUndefined | None = UNDEFINED
305+ projectInstruction : str | TypesyncUndefined | None = UNDEFINED
305306 name : str
306307 projectDetails : str
307308 projectNumber : int
@@ -323,6 +324,10 @@ class Config:
323324 def __setattr__ (self , name : str , value : typing .Any ) -> None :
324325 if name == "image" and value is None :
325326 raise ValueError ("'image' field cannot be set to None" )
327+ if name == "lookFor" and value is None :
328+ raise ValueError ("'lookFor' field cannot be set to None" )
329+ if name == "projectInstruction" and value is None :
330+ raise ValueError ("'projectInstruction' field cannot be set to None" )
326331 if name == "manualUrl" and value is None :
327332 raise ValueError ("'manualUrl' field cannot be set to None" )
328333 if name == "teamId" and value is None :
You can’t perform that action at this time.
0 commit comments