// This file is auto-generated, don't edit it
import * as $dara from '@darabonba/typescript';


export class UpdateSmsSignResponseBody extends $dara.Model {
  /**
   * @remarks
   * The status code of the request. Valid values:
   * 
   * - OK: The request was successful.
   * 
   * - For other error codes, see [Error codes](https://help.aliyun.com/document_detail/101346.html).
   * 
   * @example
   * OK
   */
  code?: string;
  /**
   * @remarks
   * The description of the status code.
   * 
   * @example
   * OK
   */
  message?: string;
  /**
   * @remarks
   * The order ID.
   * 
   * Reviewers use this ID to look up the submission. Provide this order ID to request an expedited review.
   * 
   * @example
   * 2004417****
   */
  orderId?: string;
  /**
   * @remarks
   * The unique identifier for the request, generated by Alibaba Cloud. Use this ID to troubleshoot issues.
   * 
   * @example
   * A90E4451-FED7-49D2-87C8-00700A8C4D1D
   */
  requestId?: string;
  /**
   * @remarks
   * The updated signature name.
   * 
   * @example
   * 登录验证
   */
  signName?: string;
  static names(): { [key: string]: string } {
    return {
      code: 'Code',
      message: 'Message',
      orderId: 'OrderId',
      requestId: 'RequestId',
      signName: 'SignName',
    };
  }

  static types(): { [key: string]: any } {
    return {
      code: 'string',
      message: 'string',
      orderId: 'string',
      requestId: 'string',
      signName: 'string',
    };
  }

  validate() {
    super.validate();
  }

  constructor(map?: { [key: string]: any }) {
    super(map);
  }
}

