/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the support-2013-04-15.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AWSSupport.Model { /// /// Container for the parameters to the DescribeCreateCaseOptions operation. /// Returns a list of CreateCaseOption types along with the corresponding supported hours /// and language availability. You can specify the language categoryCode, /// issueType and serviceCode used to retrieve the CreateCaseOptions. /// /// /// public partial class DescribeCreateCaseOptionsRequest : AmazonAWSSupportRequest { private string _categoryCode; private string _issueType; private string _language; private string _serviceCode; /// /// Gets and sets the property CategoryCode. /// /// The category of problem for the support case. You also use the DescribeServices /// operation to get the category code for a service. Each Amazon Web Services service /// defines its own set of category codes. /// /// [AWSProperty(Required=true)] public string CategoryCode { get { return this._categoryCode; } set { this._categoryCode = value; } } // Check to see if CategoryCode property is set internal bool IsSetCategoryCode() { return this._categoryCode != null; } /// /// Gets and sets the property IssueType. /// /// The type of issue for the case. You can specify customer-service or technical. /// If you don't specify a value, the default is technical. /// /// [AWSProperty(Required=true)] public string IssueType { get { return this._issueType; } set { this._issueType = value; } } // Check to see if IssueType property is set internal bool IsSetIssueType() { return this._issueType != null; } /// /// Gets and sets the property Language. /// /// The language in which Amazon Web Services Support handles the case. Amazon Web Services /// Support currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean /// (“ko”). You must specify the ISO 639-1 code for the language parameter /// if you want support in that language. /// /// [AWSProperty(Required=true)] public string Language { get { return this._language; } set { this._language = value; } } // Check to see if Language property is set internal bool IsSetLanguage() { return this._language != null; } /// /// Gets and sets the property ServiceCode. /// /// The code for the Amazon Web Services service. You can use the DescribeServices /// operation to get the possible serviceCode values. /// /// [AWSProperty(Required=true)] public string ServiceCode { get { return this._serviceCode; } set { this._serviceCode = value; } } // Check to see if ServiceCode property is set internal bool IsSetServiceCode() { return this._serviceCode != null; } } }