Skip to content

Commit

Permalink
Merge pull request #15 from microsoftgraph/beta/pipelinebuild/3629075
Browse files Browse the repository at this point in the history
Generated beta models and request builders using Typewriter
  • Loading branch information
baywet authored Sep 9, 2020
2 parents 08b8cd2 + 18fc27b commit b9e8213
Show file tree
Hide file tree
Showing 5,689 changed files with 118,729 additions and 47,938 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.Arrays;
import java.util.EnumSet;
import com.microsoft.graph.callrecords.models.generated.CallType;
import com.microsoft.graph.callrecords.models.generated.Modality;
import com.microsoft.graph.models.extensions.IdentitySet;
import com.microsoft.graph.callrecords.models.generated.CallType;
import com.microsoft.graph.callrecords.models.extensions.Session;
import com.microsoft.graph.models.extensions.Entity;
import com.microsoft.graph.callrecords.requests.extensions.SessionCollectionResponse;
Expand All @@ -33,28 +33,20 @@ public class CallRecord extends Entity implements IJsonBackedObject {


/**
* The Version.
* Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version.
*/
@SerializedName("version")
@Expose
public Long version;

/**
* The Type.
* Indicates the type of the call. Possible values are: unknown, groupCall, peerToPeer, unknownFutureValue.
* The End Date Time.
* UTC time when the last user left the call. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
*/
@SerializedName("type")
@SerializedName("endDateTime")
@Expose
public CallType type;
public java.util.Calendar endDateTime;

/**
* The Modalities.
* List of all the modalities used in the call. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
* The Join Web Url.
* Meeting URL associated to the call. May not be available for a peerToPeer call record type.
*/
@SerializedName("modalities")
@SerializedName("joinWebUrl")
@Expose
public java.util.List<Modality> modalities;
public String joinWebUrl;

/**
* The Last Modified Date Time.
Expand All @@ -65,20 +57,12 @@ public class CallRecord extends Entity implements IJsonBackedObject {
public java.util.Calendar lastModifiedDateTime;

/**
* The Start Date Time.
* UTC time when the first user joined the call. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
*/
@SerializedName("startDateTime")
@Expose
public java.util.Calendar startDateTime;

/**
* The End Date Time.
* UTC time when the last user left the call. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
* The Modalities.
* List of all the modalities used in the call. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
*/
@SerializedName("endDateTime")
@SerializedName("modalities")
@Expose
public java.util.Calendar endDateTime;
public java.util.List<Modality> modalities;

/**
* The Organizer.
Expand All @@ -97,12 +81,28 @@ public class CallRecord extends Entity implements IJsonBackedObject {
public java.util.List<IdentitySet> participants;

/**
* The Join Web Url.
* Meeting URL associated to the call. May not be available for a peerToPeer call record type.
* The Start Date Time.
* UTC time when the first user joined the call. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
*/
@SerializedName("joinWebUrl")
@SerializedName("startDateTime")
@Expose
public String joinWebUrl;
public java.util.Calendar startDateTime;

/**
* The Type.
* Indicates the type of the call. Possible values are: unknown, groupCall, peerToPeer, unknownFutureValue.
*/
@SerializedName("type")
@Expose
public CallType type;

/**
* The Version.
* Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version.
*/
@SerializedName("version")
@Expose
public Long version;

/**
* The Sessions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,6 @@ public final AdditionalDataManager additionalDataManager() {
return additionalDataManager;
}

/**
* The Capture Device Name.
* Name of the capture device used by the media endpoint.
*/
@SerializedName("captureDeviceName")
@Expose
public String captureDeviceName;

/**
* The Capture Device Driver.
* Name of the capture device driver used by the media endpoint.
Expand All @@ -52,52 +44,52 @@ public final AdditionalDataManager additionalDataManager() {
public String captureDeviceDriver;

/**
* The Render Device Name.
* Name of the render device used by the media endpoint.
* The Capture Device Name.
* Name of the capture device used by the media endpoint.
*/
@SerializedName("renderDeviceName")
@SerializedName("captureDeviceName")
@Expose
public String renderDeviceName;
public String captureDeviceName;

/**
* The Render Device Driver.
* Name of the render device driver used by the media endpoint.
* The Capture Not Functioning Event Ratio.
* Fraction of the call that the media endpoint detected the capture device was not working properly.
*/
@SerializedName("renderDeviceDriver")
@SerializedName("captureNotFunctioningEventRatio")
@Expose
public String renderDeviceDriver;
public float captureNotFunctioningEventRatio;

/**
* The Sent Signal Level.
* Average energy level of sent audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
* The Cpu Insufficent Event Ratio.
* Fraction of the call that the media endpoint detected the CPU resources available were insufficient and caused poor quality of the audio sent and received.
*/
@SerializedName("sentSignalLevel")
@SerializedName("cpuInsufficentEventRatio")
@Expose
public Integer sentSignalLevel;
public float cpuInsufficentEventRatio;

/**
* The Received Signal Level.
* Average energy level of received audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
* The Device Clipping Event Ratio.
* Fraction of the call that the media endpoint detected clipping in the captured audio that caused poor quality of the audio being sent.
*/
@SerializedName("receivedSignalLevel")
@SerializedName("deviceClippingEventRatio")
@Expose
public Integer receivedSignalLevel;
public float deviceClippingEventRatio;

/**
* The Sent Noise Level.
* Average energy level of sent audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
* The Device Glitch Event Ratio.
* Fraction of the call that the media endpoint detected glitches or gaps in the audio played or captured that caused poor quality of the audio being sent or received.
*/
@SerializedName("sentNoiseLevel")
@SerializedName("deviceGlitchEventRatio")
@Expose
public Integer sentNoiseLevel;
public float deviceGlitchEventRatio;

/**
* The Received Noise Level.
* Average energy level of received audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
* The Howling Event Count.
* Number of times during the call that the media endpoint detected howling or screeching audio.
*/
@SerializedName("receivedNoiseLevel")
@SerializedName("howlingEventCount")
@Expose
public Integer receivedNoiseLevel;
public Integer howlingEventCount;

/**
* The Initial Signal Level Root Mean Square.
Expand All @@ -108,68 +100,76 @@ public final AdditionalDataManager additionalDataManager() {
public float initialSignalLevelRootMeanSquare;

/**
* The Cpu Insufficent Event Ratio.
* Fraction of the call that the media endpoint detected the CPU resources available were insufficient and caused poor quality of the audio sent and received.
* The Low Speech Level Event Ratio.
* Fraction of the call that the media endpoint detected low speech level that caused poor quality of the audio being sent.
*/
@SerializedName("cpuInsufficentEventRatio")
@SerializedName("lowSpeechLevelEventRatio")
@Expose
public float cpuInsufficentEventRatio;
public float lowSpeechLevelEventRatio;

/**
* The Render Not Functioning Event Ratio.
* Fraction of the call that the media endpoint detected the render device was not working properly.
* The Low Speech To Noise Event Ratio.
* Fraction of the call that the media endpoint detected low speech to noise level that caused poor quality of the audio being sent.
*/
@SerializedName("renderNotFunctioningEventRatio")
@SerializedName("lowSpeechToNoiseEventRatio")
@Expose
public float renderNotFunctioningEventRatio;
public float lowSpeechToNoiseEventRatio;

/**
* The Capture Not Functioning Event Ratio.
* Fraction of the call that the media endpoint detected the capture device was not working properly.
* The Mic Glitch Rate.
* Glitches per 5 minute interval for the media endpoint's microphone.
*/
@SerializedName("captureNotFunctioningEventRatio")
@SerializedName("micGlitchRate")
@Expose
public float captureNotFunctioningEventRatio;
public float micGlitchRate;

/**
* The Device Glitch Event Ratio.
* Fraction of the call that the media endpoint detected glitches or gaps in the audio played or captured that caused poor quality of the audio being sent or received.
* The Received Noise Level.
* Average energy level of received audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
*/
@SerializedName("deviceGlitchEventRatio")
@SerializedName("receivedNoiseLevel")
@Expose
public float deviceGlitchEventRatio;
public Integer receivedNoiseLevel;

/**
* The Low Speech To Noise Event Ratio.
* Fraction of the call that the media endpoint detected low speech to noise level that caused poor quality of the audio being sent.
* The Received Signal Level.
* Average energy level of received audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
*/
@SerializedName("lowSpeechToNoiseEventRatio")
@SerializedName("receivedSignalLevel")
@Expose
public float lowSpeechToNoiseEventRatio;
public Integer receivedSignalLevel;

/**
* The Low Speech Level Event Ratio.
* Fraction of the call that the media endpoint detected low speech level that caused poor quality of the audio being sent.
* The Render Device Driver.
* Name of the render device driver used by the media endpoint.
*/
@SerializedName("lowSpeechLevelEventRatio")
@SerializedName("renderDeviceDriver")
@Expose
public float lowSpeechLevelEventRatio;
public String renderDeviceDriver;

/**
* The Device Clipping Event Ratio.
* Fraction of the call that the media endpoint detected clipping in the captured audio that caused poor quality of the audio being sent.
* The Render Device Name.
* Name of the render device used by the media endpoint.
*/
@SerializedName("deviceClippingEventRatio")
@SerializedName("renderDeviceName")
@Expose
public float deviceClippingEventRatio;
public String renderDeviceName;

/**
* The Howling Event Count.
* Number of times during the call that the media endpoint detected howling or screeching audio.
* The Render Mute Event Ratio.
* Fraction of the call that media endpoint detected device render is muted.
*/
@SerializedName("howlingEventCount")
@SerializedName("renderMuteEventRatio")
@Expose
public Integer howlingEventCount;
public float renderMuteEventRatio;

/**
* The Render Not Functioning Event Ratio.
* Fraction of the call that the media endpoint detected the render device was not working properly.
*/
@SerializedName("renderNotFunctioningEventRatio")
@Expose
public float renderNotFunctioningEventRatio;

/**
* The Render Zero Volume Event Ratio.
Expand All @@ -180,20 +180,20 @@ public final AdditionalDataManager additionalDataManager() {
public float renderZeroVolumeEventRatio;

/**
* The Render Mute Event Ratio.
* Fraction of the call that media endpoint detected device render is muted.
* The Sent Noise Level.
* Average energy level of sent audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
*/
@SerializedName("renderMuteEventRatio")
@SerializedName("sentNoiseLevel")
@Expose
public float renderMuteEventRatio;
public Integer sentNoiseLevel;

/**
* The Mic Glitch Rate.
* Glitches per 5 minute interval for the media endpoint's microphone.
* The Sent Signal Level.
* Average energy level of sent audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
*/
@SerializedName("micGlitchRate")
@SerializedName("sentSignalLevel")
@Expose
public float micGlitchRate;
public Integer sentSignalLevel;

/**
* The Speaker Glitch Rate.
Expand Down
Loading

0 comments on commit b9e8213

Please sign in to comment.