We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Shouldn't most objects be able to refresh for convenience?
project = gl.projects.create({...}) project.default_branch # None project.files.create( { "file_path": "README", "branch": "master", "content": "Initial content", "commit_message": "Initial commit", } ) project.default_branch # None (not true on the server anymore) project.refresh() project.default_branch # "master"