Skip to content

Commit 3a69b03

Browse files
committed
fix typo
1 parent b75bbea commit 3a69b03

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/main/java/com/microsoft/graph/models/ChangeNotificationEncryptedContent.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,12 @@ public String getDataSignature() {
8181
return this.backingStore.get("dataSignature");
8282
}
8383
/**
84-
* Gets the ecnryptionCertificateId property value. The ecnryptionCertificateId property
84+
* Gets the encryptionCertificateId property value. The encryptionCertificateId property
8585
* @return a {@link String}
8686
*/
8787
@jakarta.annotation.Nullable
88-
public String getEcnryptionCertificateId() {
89-
return this.backingStore.get("ecnryptionCertificateId");
88+
public String getEncryptionCertificateId() {
89+
return this.backingStore.get("encryptionCertificateId");
9090
}
9191
/**
9292
* Gets the encryptionCertificateThumbprint property value. The encryptionCertificateThumbprint property
@@ -106,7 +106,7 @@ public Map<String, java.util.function.Consumer<ParseNode>> getFieldDeserializers
106106
deserializerMap.put("data", (n) -> { this.setData(n.getStringValue()); });
107107
deserializerMap.put("dataKey", (n) -> { this.setDataKey(n.getStringValue()); });
108108
deserializerMap.put("dataSignature", (n) -> { this.setDataSignature(n.getStringValue()); });
109-
deserializerMap.put("ecnryptionCertificateId", (n) -> { this.setEcnryptionCertificateId(n.getStringValue()); });
109+
deserializerMap.put("encryptionCertificateId", (n) -> { this.setEncryptionCertificateId(n.getStringValue()); });
110110
deserializerMap.put("encryptionCertificateThumbprint", (n) -> { this.setEncryptionCertificateThumbprint(n.getStringValue()); });
111111
deserializerMap.put("@odata.type", (n) -> { this.setOdataType(n.getStringValue()); });
112112
return deserializerMap;
@@ -128,7 +128,7 @@ public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writ
128128
writer.writeStringValue("data", this.getData());
129129
writer.writeStringValue("dataKey", this.getDataKey());
130130
writer.writeStringValue("dataSignature", this.getDataSignature());
131-
writer.writeStringValue("ecnryptionCertificateId", this.getEcnryptionCertificateId());
131+
writer.writeStringValue("encryptionCertificateId", this.getEncryptionCertificateId());
132132
writer.writeStringValue("encryptionCertificateThumbprint", this.getEncryptionCertificateThumbprint());
133133
writer.writeStringValue("@odata.type", this.getOdataType());
134134
writer.writeAdditionalData(this.getAdditionalData());
@@ -170,11 +170,11 @@ public void setDataSignature(@jakarta.annotation.Nullable final String value) {
170170
this.backingStore.set("dataSignature", value);
171171
}
172172
/**
173-
* Sets the ecnryptionCertificateId property value. The ecnryptionCertificateId property
174-
* @param value Value to set for the ecnryptionCertificateId property.
173+
* Sets the encryptionCertificateId property value. The encryptionCertificateId property
174+
* @param value Value to set for the encryptionCertificateId property.
175175
*/
176-
public void setEcnryptionCertificateId(@jakarta.annotation.Nullable final String value) {
177-
this.backingStore.set("ecnryptionCertificateId", value);
176+
public void setEncryptionCertificateId(@jakarta.annotation.Nullable final String value) {
177+
this.backingStore.set("encryptionCertificateId", value);
178178
}
179179
/**
180180
* Sets the encryptionCertificateThumbprint property value. The encryptionCertificateThumbprint property

0 commit comments

Comments
 (0)