class SDM::RoleAttachmentCreateResponse
RoleAttachmentCreateResponse reports how the RoleAttachments were created in the system.
def initialize(
def initialize( meta: nil, role_attachment: nil, rate_limit: nil ) if meta != nil @meta = meta end if role_attachment != nil @role_attachment = role_attachment end if rate_limit != nil @rate_limit = rate_limit end end
def to_json(options = {})
def to_json(options = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end