Source code for q2_cores.CorePro.models.corepro_response

[docs] class CoreProResponse: def __init__(self, raw_response: dict): self.raw_response = raw_response self.data = raw_response.get("data") self.errors = raw_response.get("errors") self.status = raw_response.get("status")