1
2
3
4
5 package com.azure.storage.blob.models;
6
7 import com.fasterxml.jackson.annotation.JsonProperty;
8 import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
9
10
11
12
13 @JacksonXmlRootElement(localName = "PageRange")
14 public final class PageRange {
15
16
17
18 @JsonProperty(value = "Start", required = true)
19 private long start;
20
21
22
23
24 @JsonProperty(value = "End", required = true)
25 private long end;
26
27
28
29
30
31
32 public long start() {
33 return this.start;
34 }
35
36
37
38
39
40
41
42 public PageRange start(long start) {
43 this.start = start;
44 return this;
45 }
46
47
48
49
50
51
52 public long end() {
53 return this.end;
54 }
55
56
57
58
59
60
61
62 public PageRange end(long end) {
63 this.end = end;
64 return this;
65 }
66 }