-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprovider.py
36 lines (24 loc) · 959 Bytes
/
provider.py
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
# File generated from our OpenAPI spec by Stainless.
from typing import List, Optional
from .._models import BaseModel
__all__ = ["Provider"]
class Provider(BaseModel):
id: Optional[str]
"""The id of the payroll provider used in Connect."""
display_name: Optional[str]
"""The display name of the payroll provider."""
icon: Optional[str]
"""The url to the official icon of the payroll provider."""
logo: Optional[str]
"""The url to the official logo of the payroll provider."""
manual: Optional[bool]
"""
Whether the Finch integration with this provider uses the Assisted Connect Flow
by default.
"""
mfa_required: Optional[bool]
"""whether MFA is required for the provider."""
primary_color: Optional[str]
"""The hex code for the primary color of the payroll provider."""
products: Optional[List[str]]
"""The list of Finch products supported on this payroll provider."""