Class: TencentCloud::Anicloud::V20220923::CheckAppidExistResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20220923/models.rb

Overview

CheckAppidExist返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(exist = nil, haserror = nil, msg = nil, requestid = nil) ⇒ CheckAppidExistResponse

Returns a new instance of CheckAppidExistResponse.



53
54
55
56
57
58
# File 'lib/v20220923/models.rb', line 53

def initialize(exist=nil, haserror=nil, msg=nil, requestid=nil)
  @Exist = exist
  @HasError = haserror
  @Msg = msg
  @RequestId = requestid
end

Instance Attribute Details

#ExistObject

Parameters:

  • Exist:

    appid是否存在

  • HasError:

    请求是否成功

  • Msg:

    出错消息

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



51
52
53
# File 'lib/v20220923/models.rb', line 51

def Exist
  @Exist
end

#HasErrorObject

Parameters:

  • Exist:

    appid是否存在

  • HasError:

    请求是否成功

  • Msg:

    出错消息

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



51
52
53
# File 'lib/v20220923/models.rb', line 51

def HasError
  @HasError
end

#MsgObject

Parameters:

  • Exist:

    appid是否存在

  • HasError:

    请求是否成功

  • Msg:

    出错消息

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



51
52
53
# File 'lib/v20220923/models.rb', line 51

def Msg
  @Msg
end

#RequestIdObject

Parameters:

  • Exist:

    appid是否存在

  • HasError:

    请求是否成功

  • Msg:

    出错消息

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



51
52
53
# File 'lib/v20220923/models.rb', line 51

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



60
61
62
63
64
65
# File 'lib/v20220923/models.rb', line 60

def deserialize(params)
  @Exist = params['Exist']
  @HasError = params['HasError']
  @Msg = params['Msg']
  @RequestId = params['RequestId']
end