Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions scaleway-async/scaleway_async/mailbox/v1alpha1/marshalling.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,6 @@ def unmarshal_Domain(data: Any) -> Domain:
else:
args["imap_url"] = None

field = data.get("jmap_url", None)
if field is not None:
args["jmap_url"] = field
else:
args["jmap_url"] = None

field = data.get("pop3_url", None)
if field is not None:
args["pop3_url"] = field
Expand Down Expand Up @@ -342,12 +336,6 @@ def unmarshal_GetDomainRecordsResponse(data: Any) -> GetDomainRecordsResponse:
else:
args["imap"] = None

field = data.get("jmap", None)
if field is not None:
args["jmap"] = unmarshal_DomainRecord(field)
else:
args["jmap"] = None

field = data.get("mx", None)
if field is not None:
args["mx"] = unmarshal_DomainRecord(field)
Expand Down
10 changes: 0 additions & 10 deletions scaleway-async/scaleway_async/mailbox/v1alpha1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,11 +265,6 @@ class Domain:
URL of the domain's IMAP service.
"""

jmap_url: str
"""
URL of the domain's JMAP service.
"""

pop3_url: str
"""
URL of the domain's POP3 service.
Expand Down Expand Up @@ -400,11 +395,6 @@ class GetDomainRecordsResponse:
Record that allows accessing the mailbox with the IMAP protocol.
"""

jmap: Optional[DomainRecord] = None
"""
Record that allows accessing the mailbox with the JMAP protocol.
"""

mx: Optional[DomainRecord] = None
"""
Record that directs emails to a mail server.
Expand Down
12 changes: 0 additions & 12 deletions scaleway/scaleway/mailbox/v1alpha1/marshalling.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,6 @@ def unmarshal_Domain(data: Any) -> Domain:
else:
args["imap_url"] = None

field = data.get("jmap_url", None)
if field is not None:
args["jmap_url"] = field
else:
args["jmap_url"] = None

field = data.get("pop3_url", None)
if field is not None:
args["pop3_url"] = field
Expand Down Expand Up @@ -342,12 +336,6 @@ def unmarshal_GetDomainRecordsResponse(data: Any) -> GetDomainRecordsResponse:
else:
args["imap"] = None

field = data.get("jmap", None)
if field is not None:
args["jmap"] = unmarshal_DomainRecord(field)
else:
args["jmap"] = None

field = data.get("mx", None)
if field is not None:
args["mx"] = unmarshal_DomainRecord(field)
Expand Down
10 changes: 0 additions & 10 deletions scaleway/scaleway/mailbox/v1alpha1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,11 +265,6 @@ class Domain:
URL of the domain's IMAP service.
"""

jmap_url: str
"""
URL of the domain's JMAP service.
"""

pop3_url: str
"""
URL of the domain's POP3 service.
Expand Down Expand Up @@ -400,11 +395,6 @@ class GetDomainRecordsResponse:
Record that allows accessing the mailbox with the IMAP protocol.
"""

jmap: Optional[DomainRecord] = None
"""
Record that allows accessing the mailbox with the JMAP protocol.
"""

mx: Optional[DomainRecord] = None
"""
Record that directs emails to a mail server.
Expand Down
Loading