-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgroup.py
More file actions
44 lines (30 loc) · 1.27 KB
/
group.py
File metadata and controls
44 lines (30 loc) · 1.27 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# 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."""
ach_debit_status: Literal["disabled", "enabled"]
"""If the Group is allowed to create ACH debits.
- `disabled` - The Group cannot make ACH debits.
- `enabled` - The Group can make ACH debits.
"""
activation_status: Literal["unactivated", "activated"]
"""If the Group is activated or not.
- `unactivated` - The Group is not activated.
- `activated` - The Group is activated.
"""
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`.
"""