-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprogram.py
More file actions
56 lines (41 loc) · 1.47 KB
/
program.py
File metadata and controls
56 lines (41 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
55
56
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from typing import Optional
from datetime import datetime
from typing_extensions import Literal
from .._models import BaseModel
__all__ = ["Program"]
class Program(BaseModel):
id: str
"""The Program identifier."""
bank: Literal["core_bank", "first_internet_bank", "grasshopper_bank"]
"""The Bank the Program is with.
- `core_bank` - Core Bank
- `first_internet_bank` - First Internet Bank of Indiana
- `grasshopper_bank` - Grasshopper Bank
"""
billing_account_id: Optional[str] = None
"""The Program billing account."""
created_at: datetime
"""
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Program
was created.
"""
default_digital_card_profile_id: Optional[str] = None
"""The default configuration for digital cards attached to this Program."""
interest_rate: str
"""
The Interest Rate currently being earned on the accounts in this program, as a
string containing a decimal number. For example, a 1% interest rate would be
represented as "0.01".
"""
name: str
"""The name of the Program."""
type: Literal["program"]
"""A constant representing the object's type.
For this resource it will always be `program`.
"""
updated_at: datetime
"""
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Program
was last updated.
"""