class SDM::RoleGrant

access to that resource.
A RoleGrant connects a resource to a role, granting members of the role

def initialize(

def initialize(
	id:nil \
	resource_id:nil \
	role_id:nil \
)
	if id != nil
		@id = id
	end
	if resource_id != nil
		@resource_id = resource_id
	end
	if role_id != nil
		@role_id = role_id
	end
end