Skip to content

Commit 258ebaa

Browse files
DPGrevclaude
andcommitted
fix: move odata_delta_link to end of PageResult fields
Keeps the field addition purely additive for positional construction (PageResult(next_link, value)), avoiding a breaking change for any downstream caller not using keyword arguments, per the repo's contribution guideline against interface-breaking trivial PRs. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 455197a commit 258ebaa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/msgraph_core/models/page_result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
@dataclass
2626
class PageResult(Parsable):
2727
odata_next_link: Optional[str] = None
28-
odata_delta_link: Optional[str] = None
2928
value: Optional[list[Parsable]] = None
29+
odata_delta_link: Optional[str] = None
3030

3131
@staticmethod
3232
def create_from_discriminator_value(parse_node: Optional[ParseNode] = None) -> PageResult:

0 commit comments

Comments
 (0)