-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgroup.py
More file actions
30 lines (20 loc) · 879 Bytes
/
group.py
File metadata and controls
30 lines (20 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from datetime import datetime
from typing_extensions import Literal
from .._models import BaseModel
__all__ = ["Group"]
class Group(BaseModel):
"""Groups represent organizations using Increase.
You can retrieve information about your own organization via the API. More commonly, OAuth platforms can retrieve information about the organizations that have granted them access. Learn more about OAuth [here](https://increase.com/documentation/oauth).
"""
id: str
"""The Group identifier."""
created_at: datetime
"""
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Group
was created.
"""
type: Literal["group"]
"""A constant representing the object's type.
For this resource it will always be `group`.
"""