Skip to content

Commit fcfdca7

Browse files
committed
Merge branch 'dev' into vidadhee/AdditionalDataManagerTest
2 parents 0059f66 + cc6e1df commit fcfdca7

File tree

1,561 files changed

+16432
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,561 files changed

+16432
-6
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636
implementation 'com.squareup.okhttp3:okhttp:3.12.1'
3737

3838
// Core Http library
39-
implementation 'com.microsoft.graph:microsoft-graph-core:1.0.2'
39+
implementation 'com.microsoft.graph:microsoft-graph-core:1.0.3'
4040
}
4141

4242
def pomConfig = {

src/main/java/com/microsoft/graph/callrecords/requests/extensions/CallRecordCollectionRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,17 @@ public ICallRecordCollectionRequest expand(final String value) {
8484
return (CallRecordCollectionRequest)this;
8585
}
8686

87+
/**
88+
* Sets the filter clause for the request
89+
*
90+
* @param value the filter clause
91+
* @return the updated request
92+
*/
93+
public ICallRecordCollectionRequest filter(final String value) {
94+
addQueryOption(new com.microsoft.graph.options.QueryOption("$filter", value));
95+
return (CallRecordCollectionRequest)this;
96+
}
97+
8798
/**
8899
* Sets the select clause for the request
89100
*

src/main/java/com/microsoft/graph/callrecords/requests/extensions/CallRecordRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,5 +158,16 @@ public ICallRecordRequest expand(final String value) {
158158
return (CallRecordRequest)this;
159159
}
160160

161+
/**
162+
* Sets the filter clause for the request
163+
*
164+
* @param value the filter clause
165+
* @return the updated request
166+
*/
167+
public ICallRecordRequest filter(final String value) {
168+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
169+
return (CallRecordRequest)this;
170+
}
171+
161172
}
162173

src/main/java/com/microsoft/graph/callrecords/requests/extensions/ICallRecordCollectionRequest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public interface ICallRecordCollectionRequest {
3737
*/
3838
ICallRecordCollectionRequest expand(final String value);
3939

40+
/**
41+
* Sets the filter clause for the request
42+
*
43+
* @param value the filter clause
44+
* @return the updated request
45+
*/
46+
ICallRecordCollectionRequest filter(final String value);
47+
4048
/**
4149
* Sets the select clause for the request
4250
*

src/main/java/com/microsoft/graph/callrecords/requests/extensions/ISegmentCollectionRequest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public interface ISegmentCollectionRequest {
3737
*/
3838
ISegmentCollectionRequest expand(final String value);
3939

40+
/**
41+
* Sets the filter clause for the request
42+
*
43+
* @param value the filter clause
44+
* @return the updated request
45+
*/
46+
ISegmentCollectionRequest filter(final String value);
47+
4048
/**
4149
* Sets the select clause for the request
4250
*

src/main/java/com/microsoft/graph/callrecords/requests/extensions/ISessionCollectionRequest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public interface ISessionCollectionRequest {
3737
*/
3838
ISessionCollectionRequest expand(final String value);
3939

40+
/**
41+
* Sets the filter clause for the request
42+
*
43+
* @param value the filter clause
44+
* @return the updated request
45+
*/
46+
ISessionCollectionRequest filter(final String value);
47+
4048
/**
4149
* Sets the select clause for the request
4250
*

src/main/java/com/microsoft/graph/callrecords/requests/extensions/SegmentCollectionRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,17 @@ public ISegmentCollectionRequest expand(final String value) {
8484
return (SegmentCollectionRequest)this;
8585
}
8686

87+
/**
88+
* Sets the filter clause for the request
89+
*
90+
* @param value the filter clause
91+
* @return the updated request
92+
*/
93+
public ISegmentCollectionRequest filter(final String value) {
94+
addQueryOption(new com.microsoft.graph.options.QueryOption("$filter", value));
95+
return (SegmentCollectionRequest)this;
96+
}
97+
8798
/**
8899
* Sets the select clause for the request
89100
*

src/main/java/com/microsoft/graph/callrecords/requests/extensions/SegmentRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,5 +154,16 @@ public ISegmentRequest expand(final String value) {
154154
return (SegmentRequest)this;
155155
}
156156

157+
/**
158+
* Sets the filter clause for the request
159+
*
160+
* @param value the filter clause
161+
* @return the updated request
162+
*/
163+
public ISegmentRequest filter(final String value) {
164+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
165+
return (SegmentRequest)this;
166+
}
167+
157168
}
158169

src/main/java/com/microsoft/graph/callrecords/requests/extensions/SessionCollectionRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,17 @@ public ISessionCollectionRequest expand(final String value) {
8484
return (SessionCollectionRequest)this;
8585
}
8686

87+
/**
88+
* Sets the filter clause for the request
89+
*
90+
* @param value the filter clause
91+
* @return the updated request
92+
*/
93+
public ISessionCollectionRequest filter(final String value) {
94+
addQueryOption(new com.microsoft.graph.options.QueryOption("$filter", value));
95+
return (SessionCollectionRequest)this;
96+
}
97+
8798
/**
8899
* Sets the select clause for the request
89100
*

src/main/java/com/microsoft/graph/callrecords/requests/extensions/SessionRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,5 +158,16 @@ public ISessionRequest expand(final String value) {
158158
return (SessionRequest)this;
159159
}
160160

161+
/**
162+
* Sets the filter clause for the request
163+
*
164+
* @param value the filter clause
165+
* @return the updated request
166+
*/
167+
public ISessionRequest filter(final String value) {
168+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
169+
return (SessionRequest)this;
170+
}
171+
161172
}
162173

0 commit comments

Comments
 (0)