Package com.google.cloud.support.v2
Interface UpdateCaseRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateCaseRequest
,UpdateCaseRequest.Builder
public interface UpdateCaseRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Case
getCase()
Required.CaseOrBuilder
getCaseOrBuilder()
Required.com.google.protobuf.FieldMask
getUpdateMask()
A list of attributes of the case object that should be updated as part of this request.com.google.protobuf.FieldMaskOrBuilder
getUpdateMaskOrBuilder()
A list of attributes of the case object that should be updated as part of this request.boolean
hasCase()
Required.boolean
hasUpdateMask()
A list of attributes of the case object that should be updated as part of this request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCase
boolean hasCase()
Required. The case object to update.
.google.cloud.support.v2.Case case = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the case field is set.
-
getCase
Case getCase()
Required. The case object to update.
.google.cloud.support.v2.Case case = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The case.
-
getCaseOrBuilder
CaseOrBuilder getCaseOrBuilder()
Required. The case object to update.
.google.cloud.support.v2.Case case = 1 [(.google.api.field_behavior) = REQUIRED];
-
hasUpdateMask
boolean hasUpdateMask()
A list of attributes of the case object that should be updated as part of this request. Supported values are `priority`, `display_name`, and `subscriber_email_addresses`. If no fields are specified, all supported fields are updated. WARNING: If you do not provide a field mask, then you might accidentally clear some fields. For example, if you leave the field mask empty and do not provide a value for `subscriber_email_addresses`, then `subscriber_email_addresses` is updated to empty.
.google.protobuf.FieldMask update_mask = 2;
- Returns:
- Whether the updateMask field is set.
-
getUpdateMask
com.google.protobuf.FieldMask getUpdateMask()
A list of attributes of the case object that should be updated as part of this request. Supported values are `priority`, `display_name`, and `subscriber_email_addresses`. If no fields are specified, all supported fields are updated. WARNING: If you do not provide a field mask, then you might accidentally clear some fields. For example, if you leave the field mask empty and do not provide a value for `subscriber_email_addresses`, then `subscriber_email_addresses` is updated to empty.
.google.protobuf.FieldMask update_mask = 2;
- Returns:
- The updateMask.
-
getUpdateMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
A list of attributes of the case object that should be updated as part of this request. Supported values are `priority`, `display_name`, and `subscriber_email_addresses`. If no fields are specified, all supported fields are updated. WARNING: If you do not provide a field mask, then you might accidentally clear some fields. For example, if you leave the field mask empty and do not provide a value for `subscriber_email_addresses`, then `subscriber_email_addresses` is updated to empty.
.google.protobuf.FieldMask update_mask = 2;
-
-