PatternRuleUpdateObject Class

  • java.lang.Object
    • com.microsoft.azure.cognitiveservices.language.luis.authoring.models.PatternRuleUpdateObject

public class PatternRuleUpdateObject

Object model for updating a pattern.

Method Summary

Modifier and Type Method and Description
UUID id()

Get the id value.

String intent()

Get the intent value.

String pattern()

Get the pattern value.

PatternRuleUpdateObject withId(UUID id)

Set the id value.

PatternRuleUpdateObject withIntent(String intent)

Set the intent value.

PatternRuleUpdateObject withPattern(String pattern)

Set the pattern value.

Method Details

id

public UUID id()

Get the id value.

Returns:

the id value

intent

public String intent()

Get the intent value.

Returns:

the intent value

pattern

public String pattern()

Get the pattern value.

Returns:

the pattern value

withId

public PatternRuleUpdateObject withId(UUID id)

Set the id value.

Parameters:

id - the id value to set

Returns:

the PatternRuleUpdateObject object itself.

withIntent

public PatternRuleUpdateObject withIntent(String intent)

Set the intent value.

Parameters:

intent - the intent value to set

Returns:

the PatternRuleUpdateObject object itself.

withPattern

public PatternRuleUpdateObject withPattern(String pattern)

Set the pattern value.

Parameters:

pattern - the pattern value to set

Returns:

the PatternRuleUpdateObject object itself.

Applies to