Skip to content

Commit 4bef649

Browse files
committed
- udpates unit test files
1 parent c5ce5d5 commit 4bef649

File tree

55 files changed

+565
-0
lines changed

Some content is hidden

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

55 files changed

+565
-0
lines changed

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/CallCollectionRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,17 @@ public ICallCollectionRequest filter(final String value) {
9595
return (CallCollectionRequest)this;
9696
}
9797

98+
/**
99+
* Sets the order by clause for the request
100+
*
101+
* @param value the order by clause
102+
* @return the updated request
103+
*/
104+
public ICallCollectionRequest orderBy(final String value) {
105+
addQueryOption(new com.microsoft.graph.options.QueryOption("$orderby", value));
106+
return (CallCollectionRequest)this;
107+
}
108+
98109
/**
99110
* Sets the select clause for the request
100111
*

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/CallReferenceRequest.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,16 @@ public ICallReferenceRequest filter(final String value) {
7373
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
7474
return (CallReferenceRequest)this;
7575
}
76+
/**
77+
* Sets the order by clause for the request
78+
*
79+
* @param value the order by clause
80+
* @return the updated request
81+
*/
82+
public ICallReferenceRequest orderBy(final String value) {
83+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
84+
return (CallReferenceRequest)this;
85+
}
7686
/**
7787
* Puts the Call
7888
*

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/CallRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,5 +165,16 @@ public ICallRequest filter(final String value) {
165165
return (CallRequest)this;
166166
}
167167

168+
/**
169+
* Sets the order by clause for the request
170+
*
171+
* @param value the order by clause
172+
* @return the updated request
173+
*/
174+
public ICallRequest orderBy(final String value) {
175+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
176+
return (CallRequest)this;
177+
}
178+
168179
}
169180

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/CallWithReferenceRequest.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,14 @@ public ICallWithReferenceRequest filter(final String value) {
103103
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
104104
return (CallWithReferenceRequest)this;
105105
}
106+
/**
107+
* Sets the order by clause for the request
108+
*
109+
* @param value the order by clause
110+
* @return the updated request
111+
*/
112+
public ICallWithReferenceRequest orderBy(final String value) {
113+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
114+
return (CallWithReferenceRequest)this;
115+
}
106116
}

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/CloudCommunicationsRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,5 +173,16 @@ public ICloudCommunicationsRequest filter(final String value) {
173173
return (CloudCommunicationsRequest)this;
174174
}
175175

176+
/**
177+
* Sets the order by clause for the request
178+
*
179+
* @param value the order by clause
180+
* @return the updated request
181+
*/
182+
public ICloudCommunicationsRequest orderBy(final String value) {
183+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
184+
return (CloudCommunicationsRequest)this;
185+
}
186+
176187
}
177188

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/EndpointRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,5 +165,16 @@ public IEndpointRequest filter(final String value) {
165165
return (EndpointRequest)this;
166166
}
167167

168+
/**
169+
* Sets the order by clause for the request
170+
*
171+
* @param value the order by clause
172+
* @return the updated request
173+
*/
174+
public IEndpointRequest orderBy(final String value) {
175+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
176+
return (EndpointRequest)this;
177+
}
178+
168179
}
169180

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/EntityRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,16 @@ public IEntityRequest filter(final String value) {
8080
return (EntityRequest)this;
8181
}
8282

83+
/**
84+
* Sets the order by clause for the request
85+
*
86+
* @param value the order by clause
87+
* @return the updated request
88+
*/
89+
public IEntityRequest orderBy(final String value) {
90+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
91+
return (EntityRequest)this;
92+
}
93+
8394
}
8495

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/EntityType2CollectionRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,17 @@ public IEntityType2CollectionRequest filter(final String value) {
9595
return (EntityType2CollectionRequest)this;
9696
}
9797

98+
/**
99+
* Sets the order by clause for the request
100+
*
101+
* @param value the order by clause
102+
* @return the updated request
103+
*/
104+
public IEntityType2CollectionRequest orderBy(final String value) {
105+
addQueryOption(new com.microsoft.graph.options.QueryOption("$orderby", value));
106+
return (EntityType2CollectionRequest)this;
107+
}
108+
98109
/**
99110
* Sets the select clause for the request
100111
*

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/EntityType2ReferenceRequest.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,16 @@ public IEntityType2ReferenceRequest filter(final String value) {
7373
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
7474
return (EntityType2ReferenceRequest)this;
7575
}
76+
/**
77+
* Sets the order by clause for the request
78+
*
79+
* @param value the order by clause
80+
* @return the updated request
81+
*/
82+
public IEntityType2ReferenceRequest orderBy(final String value) {
83+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
84+
return (EntityType2ReferenceRequest)this;
85+
}
7686
/**
7787
* Puts the EntityType2
7888
*

test/Typewriter.Test/TestDataJava/com/microsoft/graph/requests/extensions/EntityType2Request.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,5 +165,16 @@ public IEntityType2Request filter(final String value) {
165165
return (EntityType2Request)this;
166166
}
167167

168+
/**
169+
* Sets the order by clause for the request
170+
*
171+
* @param value the order by clause
172+
* @return the updated request
173+
*/
174+
public IEntityType2Request orderBy(final String value) {
175+
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
176+
return (EntityType2Request)this;
177+
}
178+
168179
}
169180

0 commit comments

Comments
 (0)