gitextract_i16arub0/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── feature_request.md │ │ └── question_help.md │ ├── dependabot.yml │ └── workflows/ │ ├── codeql-analysis.yml │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── generator/ │ ├── README.md │ ├── generate-sdk.sh │ ├── go_client.stoneg.py │ ├── go_helpers.py │ ├── go_rsrc/ │ │ └── sdk.go │ └── go_types.stoneg.py └── v6/ ├── dropbox/ │ ├── account/ │ │ ├── client.go │ │ └── types.go │ ├── async/ │ │ └── types.go │ ├── auth/ │ │ ├── client.go │ │ ├── sdk.go │ │ └── types.go │ ├── check/ │ │ ├── client.go │ │ └── types.go │ ├── common/ │ │ └── types.go │ ├── contacts/ │ │ ├── client.go │ │ └── types.go │ ├── file_properties/ │ │ ├── client.go │ │ └── types.go │ ├── file_requests/ │ │ ├── client.go │ │ └── types.go │ ├── files/ │ │ ├── client.go │ │ └── types.go │ ├── openid/ │ │ ├── client.go │ │ └── types.go │ ├── paper/ │ │ ├── client.go │ │ └── types.go │ ├── sdk.go │ ├── sdk_test.go │ ├── secondary_emails/ │ │ └── types.go │ ├── seen_state/ │ │ └── types.go │ ├── sharing/ │ │ ├── client.go │ │ └── types.go │ ├── team/ │ │ ├── client.go │ │ └── types.go │ ├── team_common/ │ │ └── types.go │ ├── team_log/ │ │ ├── client.go │ │ └── types.go │ ├── team_policies/ │ │ └── types.go │ ├── users/ │ │ ├── client.go │ │ └── types.go │ └── users_common/ │ └── types.go ├── go.mod └── go.sum