-
Notifications
You must be signed in to change notification settings - Fork 48
Add spec for team on-call endpoint #2598
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add spec for team on-call endpoint #2598
Conversation
"type": "type", | ||
} | ||
|
||
def __init__(self_, id: str, type: EscalationRelationshipsRespondersDataItemsType, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, id: str, type: EscalationRelationshipsRespondersDataItemsType, **kwargs): | |
def __init__(self, id: str, type: EscalationRelationshipsRespondersDataItemsType, **kwargs): |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
"data": "data", | ||
} | ||
|
||
def __init__(self_, data: Union[List[EscalationRelationshipsRespondersDataItems], UnsetType] = unset, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, data: Union[List[EscalationRelationshipsRespondersDataItems], UnsetType] = unset, **kwargs): | |
def __init__(self, data: Union[List[EscalationRelationshipsRespondersDataItems], UnsetType] = unset, **kwargs): |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
} | ||
|
||
def __init__( | ||
self_, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
self_, | |
self, |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
"responders": "responders", | ||
} | ||
|
||
def __init__(self_, responders: Union[EscalationRelationshipsResponders, UnsetType] = unset, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, responders: Union[EscalationRelationshipsResponders, UnsetType] = unset, **kwargs): | |
def __init__(self, responders: Union[EscalationRelationshipsResponders, UnsetType] = unset, **kwargs): |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
} | ||
|
||
def __init__( | ||
self_, data: Union[List[TeamOnCallRespondersDataRelationshipsEscalationsDataItems], UnsetType] = unset, **kwargs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
self_, data: Union[List[TeamOnCallRespondersDataRelationshipsEscalationsDataItems], UnsetType] = unset, **kwargs | |
self, data: Union[List[TeamOnCallRespondersDataRelationshipsEscalationsDataItems], UnsetType] = unset, **kwargs |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
} | ||
|
||
def __init__( | ||
self_, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
self_, | |
self, |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
"type": "type", | ||
} | ||
|
||
def __init__(self_, id: str, type: TeamOnCallRespondersDataRelationshipsEscalationsDataItemsType, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, id: str, type: TeamOnCallRespondersDataRelationshipsEscalationsDataItemsType, **kwargs): | |
def __init__(self, id: str, type: TeamOnCallRespondersDataRelationshipsEscalationsDataItemsType, **kwargs): |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
} | ||
|
||
def __init__( | ||
self_, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
self_, | |
self, |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
} | ||
|
||
def __init__( | ||
self_, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
self_, | |
self, |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
} | ||
|
||
def __init__( | ||
self_, data: Union[List[TeamOnCallRespondersDataRelationshipsRespondersDataItems], UnsetType] = unset, **kwargs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
self_, data: Union[List[TeamOnCallRespondersDataRelationshipsRespondersDataItems], UnsetType] = unset, **kwargs | |
self, data: Union[List[TeamOnCallRespondersDataRelationshipsRespondersDataItems], UnsetType] = unset, **kwargs |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
ac234f0
to
b3ff9dc
Compare
b3ff9dc
to
922b5c3
Compare
922b5c3
to
e3f098b
Compare
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com> 082dc9f
See DataDog/datadog-api-spec#3920
Test branch datadog-api-spec/test/d.marin/oncall_team