-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgroup.py
More file actions
39 lines (27 loc) · 979 Bytes
/
group.py
File metadata and controls
39 lines (27 loc) · 979 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
31
32
33
34
35
36
37
38
39
# 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):
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`.
"""