Skip to content
Merged
Prev Previous commit
Merge branch 'main' into ericasp/add-number-lookup-to-communication-p…
…honenumbers
  • Loading branch information
ericasp16 committed Jul 26, 2023
commit 6c7d7e300c116709e57ce6e16114ecca6a2bf331
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/** The Communication Services error. */
/** The CommunicationError model. */
@Generated
@Fluent
public final class CommunicationError {
/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static BillingFrequency fromString(String name) {
}

/**
* Gets known BillingFrequency values.
* Gives a Collection of BillingFrequency Values
*
* @return known BillingFrequency values.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
import com.azure.core.annotation.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;

/** Represents an Area Code. */
/**
* The PhoneNumberAreaCode model.
*/
@Immutable
public final class PhoneNumberAreaCode {
/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static PhoneNumberAssignmentType fromString(String name) {
}

/**
* Gets known PhoneNumberAssignmentType values.
* Gives a collestion ov PhoneNumberAssignmentType
*
* @return known PhoneNumberAssignmentType values.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static PhoneNumberCapabilityType fromString(String name) {
}

/**
* Gets known PhoneNumberCapabilityType values.
* Gives a Collection of PhoneNumberCapabilityType
*
* @return known PhoneNumberCapabilityType values.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ public static PhoneNumberOperationType fromString(String name) {
}

/**
* Gets known PhoneNumberOperationType values.
* Gives a collection of PhoneNumberOperationType values
*
* @return known PhoneNumberOperationType values.
* @return known PhoneNumberOperationType values
*/
public static Collection<PhoneNumberOperationType> values() {
return values(PhoneNumberOperationType.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static PhoneNumberType fromString(String name) {
}

/**
* Gets known PhoneNumberType values.
* Gives a collection of PhoneNumberType values
*
* @return known PhoneNumberType values.
*/
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.